#include "SA_QAPProblem.h" #include main(int argc,char **argv) { std::cout << "Starting example program" << std::endl; SA_Initializer start; SA_Problem p; // the starter is used to read the Configurationfile SA.cfg and to set up // the choosen solver SA_Solver *sp = start.ReadConfigFile(argc,argv,p); if ( sp != NULL ) { sp->RunAnnealing(); // Run the algorithm selected via the configuration file delete sp; } }