示例#1
0
void TestEvolutionaryAlgorithm::test_get_best_evaluation_history(void)
{
   message += "test_get_best_evaluation_history\n";

   EvolutionaryAlgorithm ea;

   Vector<double> best_evaluation_history = ea.get_best_evaluation_history();

   assert_true(best_evaluation_history.get_size() == 0, LOG);
}