25 #ifndef PAGMO_PROBLEM_CON2MO_H
26 #define PAGMO_PROBLEM_CON2MO_H
30 #include "../serialization.h"
33 #include "base_meta.h"
35 namespace pagmo{
namespace problem {
85 std::string get_name()
const;
88 std::string human_readable_extra()
const;
92 friend class boost::serialization::access;
93 template <
class Archive>
94 void serialize(Archive &ar,
const unsigned int)
96 ar & boost::serialization::base_object<base_meta>(*this);
97 ar &
const_cast<method_type &
>(m_method);
99 const method_type m_method;
106 #endif // PAGMO_PROBLEM_CON2MO_H
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base problem.
std::vector< double > decision_vector
Decision vector type.
method_type
Mechanism used to deal with constraints in the objectives.
The CEC 2006 problems: Constrained Real-Parameter Optimization.
std::vector< double > fitness_vector
Fitness vector type.
Constrainted to Multi-Objective meta-problem.