//----------------------------------------------------------------------------- /** testSimulatedAnnealing.cpp * * SV - 29/03/10 * JH - 20/04/10 */ //----------------------------------------------------------------------------- // standard includes #define HAVE_SSTREAM #include // runtime_error #include // cout #include // ostrstream, istrstream #include #include // the general include for eo #include #include using namespace std; //----------------------------------------------------------------------------- //Representation and initializer #include #include #include // fitness function #include #include #include //Neighbors and Neighborhoods #include #include //Algorithm and its components #include #include //comparator #include //continuators #include #include #include #include #include //----------------------------------------------------------------------------- // Define types of the representation solution, different neighbors and neighborhoods //----------------------------------------------------------------------------- typedef eoInt Queen; //Permutation (Queen's problem representation) typedef moShiftNeighbor shiftNeighbor; //shift Neighbor typedef moRndWithReplNeighborhood rndShiftNeighborhood; //rnd shift Neighborhood (Indexed) void main_function(int argc, char **argv) { /* ========================================================= * * Parameters * * ========================================================= */ // First define a parser from the command-line arguments eoParser parser(argc, argv); // For each parameter, define Parameter, read it through the parser, // and assign the value to the variable eoValueParam seedParam(time(0), "seed", "Random number seed", 'S'); parser.processParam( seedParam ); unsigned seed = seedParam.value(); // description of genotype eoValueParam vecSizeParam(8, "vecSize", "Genotype size", 'V'); parser.processParam( vecSizeParam, "Representation" ); unsigned vecSize = vecSizeParam.value(); // the name of the "status" file where all actual parameter values will be saved string str_status = parser.ProgramName() + ".status"; // default value eoValueParam statusParam(str_status.c_str(), "status", "Status file"); parser.processParam( statusParam, "Persistence" ); // do the following AFTER ALL PARAMETERS HAVE BEEN PROCESSED // i.e. in case you need parameters somewhere else, postpone these if (parser.userNeedsHelp()) { parser.printHelp(cout); exit(1); } if (statusParam.value() != "") { ofstream os(statusParam.value().c_str()); os << parser;// and you can use that file as parameter file } /* ========================================================= * * Random seed * * ========================================================= */ //reproducible random seed: if you don't change SEED above, // you'll always get the same result, NOT a random run rng.reseed(seed); /* ========================================================= * * Eval fitness function * * ========================================================= */ queenEval fullEval; /* ========================================================= * * Initilisation of the solution * * ========================================================= */ eoInitPermutation init(vecSize); /* ========================================================= * * evaluation of a neighbor solution * * ========================================================= */ moFullEvalByCopy shiftEval(fullEval); /* ========================================================= * * the neighborhood of a solution * * ========================================================= */ rndShiftNeighborhood rndShiftNH((vecSize-1) * (vecSize-1)); /* ========================================================= * * the local search algorithm * * ========================================================= */ moSA localSearch1(rndShiftNH, fullEval, shiftEval); /* ========================================================= * * execute the local search from random solution * * ========================================================= */ Queen solution1, solution2; init(solution1); fullEval(solution1); std::cout << "#########################################" << std::endl; std::cout << "initial solution1: " << solution1 << std::endl ; localSearch1(solution1); std::cout << "final solution1: " << solution1 << std::endl ; std::cout << "#########################################" << std::endl; /* ========================================================= * * the cooling schedule of the process * * ========================================================= */ // initial temp, factor of decrease, number of steps without decrease, final temp. moSimpleCoolingSchedule coolingSchedule(1, 0.9, 100, 0.01); /* ========================================================= * * Comparator of neighbors * * ========================================================= */ moSolNeighborComparator solComparator; /* ========================================================= * * Example of Checkpointing * * ========================================================= */ moTrueContinuator continuator;//always continue moCheckpoint checkpoint(continuator); moFitnessStat fitStat; checkpoint.add(fitStat); eoFileMonitor monitor("fitness.out", ""); moCounterMonitorSaver countMon(100, monitor); checkpoint.add(countMon); monitor.add(fitStat); moSA localSearch2(rndShiftNH, fullEval, shiftEval, coolingSchedule, solComparator, checkpoint); init(solution2); fullEval(solution2); std::cout << "#########################################" << std::endl; std::cout << "initial solution2: " << solution2 << std::endl ; localSearch2(solution2); std::cout << "final solution2: " << solution2 << std::endl ; std::cout << "#########################################" << std::endl; } // A main that catches the exceptions int main(int argc, char **argv) { try { main_function(argc, argv); } catch (exception& e) { cout << "Exception: " << e.what() << '\n'; } return 0; }