changing Makefile.am's to accept new subdiretory structure
This commit is contained in:
parent
5467df160c
commit
1fe3a72e10
11 changed files with 148 additions and 72 deletions
|
|
@ -78,7 +78,7 @@ double sum_fitness(It begin, It end)
|
|||
{
|
||||
double v = static_cast<double>(begin->fitness());
|
||||
if (v < 0.0)
|
||||
throw std::logical_error("Negative Fitness Encountered");
|
||||
throw std::logic_error("sum_fitness: negative fitness value encountered");
|
||||
sum += v;
|
||||
}
|
||||
|
||||
|
|
|
|||
Reference in a new issue