changing Makefile.am's to accept new subdiretory structure

This commit is contained in:
gustavo 2000-03-30 14:20:25 +00:00
commit 1fe3a72e10
11 changed files with 148 additions and 72 deletions

View file

@ -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;
}