intermediate commit 5

This commit is contained in:
LPTK 2013-07-09 16:25:30 +02:00
commit 816ea1553a
11 changed files with 377 additions and 157 deletions

View file

@ -51,12 +51,12 @@ int main() {
//test second constructor
moSimpleCoolingSchedule<bitVector> cool(10, 0.9, 100, 0.01);
moSA<bitNeighbor> test2(nh, fullEval, eval, cool);
moSA<bitNeighbor> test2(nh, fullEval, cool, eval);
//test third constructor
moTrueContinuator<bitNeighbor> cont;
moSolNeighborComparator<bitNeighbor> comp;
moSA<bitNeighbor> test3(nh, fullEval, eval, cool, comp, cont);
moSA<bitNeighbor> test3(nh, fullEval, cool, eval, cont, comp);
std::cout << "[t-moSA] => OK" << std::endl;