25 #ifndef PAGMO_ALGORITHM_INVEROVER_H
26 #define PAGMO_ALGORITHM_INVEROVER_H
30 #include "../config.h"
31 #include "../serialization.h"
32 #include "../population.h"
33 #include "../problem/base_tsp.h"
36 namespace pagmo {
namespace algorithm {
58 enum initialization_type
63 inverover(
int gen = 10000,
double ri = 0.05, initialization_type ini_type = random);
66 std::string get_name()
const;
69 std::string human_readable_extra()
const;
72 friend class boost::serialization::access;
73 template <
class Archive>
74 void serialize(Archive &ar,
const unsigned int)
76 ar & boost::serialization::base_object<base>(*this);
77 ar &
const_cast<int &
>(m_gen);
78 ar &
const_cast<double &
>(m_ri);
86 initialization_type m_ini_type;
93 #endif // PAGMO_ALGORITHM_INVEROVER_H
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base algorithm.
Inver-Over Algorithm (IO)