コード例 #1
0
void TestEvolutionaryAlgorithm::test_get_population_history(void)
{
   message += "test_get_population_history\n";

   EvolutionaryAlgorithm ea;

   Vector< Matrix<double> > population_history = ea.get_population_history();

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