updated all mo tests

This commit is contained in:
LPTK 2013-07-19 13:49:02 +02:00
commit eec9e9fd56
8 changed files with 494 additions and 26 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;