Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00105 #ifndef METS_METS_HH_
00106 #define METS_METS_HH_
00107
00108 #include "metslib_config.hh"
00109
00110 #include <list>
00111 #include <cmath>
00112 #include <deque>
00113 #include <limits>
00114 #include <string>
00115 #include <vector>
00116 #include <cassert>
00117 #include <typeinfo>
00118 #include <iostream>
00119 #include <stdexcept>
00120 #include <algorithm>
00121
00122 #if defined (METSLIB_TR1_BOOST)
00123 # include <boost/random/uniform_int.hpp>
00124 # include <boost/random/uniform_real.hpp>
00125 # include <boost/unordered_map.hpp>
00126 #elif defined (METSLIB_HAVE_UNORDERED_MAP)
00127 # include <unordered_map>
00128 # include <random>
00129 #elif defined (METSLIB_HAVE_TR1_UNORDERED_MAP)
00130 # include <tr1/unordered_map>
00131 # include <tr1/random>
00132 #else
00133 # error "Unable to find unordered_map header file. Please use a recent C++ compiler supporting TR1 extension."
00134 #endif
00135
00136
00144
00145 #include "observer.hh"
00146 #include "model.hh"
00147 #include "termination-criteria.hh"
00148 #include "abstract-search.hh"
00149 #include "local-search.hh"
00150 #include "tabu-search.hh"
00151 #include "simulated-annealing.hh"
00152
00153
00154
00155 inline std::ostream&
00156 operator<<(std::ostream& os, const mets::printable& p)
00157 {
00158 p.print(os);
00159 return os;
00160 }
00161
00162 #endif