1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00

Remove old macros for threading

This commit is contained in:
paboyle 2018-01-24 13:23:24 +00:00
parent f1c31df9d2
commit be1511d469

View File

@ -134,7 +134,6 @@ void GeneticScheduler<V, T>::nextGeneration(void)
LOG(Debug) << "Starting population:\n" << *this << std::endl;
// random mutations
//PARALLEL_FOR_LOOP
for (unsigned int i = 0; i < par_.popSize; ++i)
{
doMutation();
@ -142,7 +141,6 @@ void GeneticScheduler<V, T>::nextGeneration(void)
LOG(Debug) << "After mutations:\n" << *this << std::endl;
// mating
//PARALLEL_FOR_LOOP
for (unsigned int i = 0; i < par_.popSize/2; ++i)
{
doCrossover();
@ -178,7 +176,7 @@ void GeneticScheduler<V, T>::doCrossover(void)
Gene c1, c2;
crossover(c1, c2, p1, p2);
PARALLEL_CRITICAL
thread_critical
{
population_.insert(std::make_pair(func_(c1), c1));
population_.insert(std::make_pair(func_(c2), c2));
@ -198,7 +196,7 @@ void GeneticScheduler<V, T>::doMutation(void)
std::advance(it, pdis(gen_));
mutation(m, it->second);
PARALLEL_CRITICAL
thread_critical
{
population_.insert(std::make_pair(func_(m), m));
}