25 #ifndef PAGMO_PROBLEM_DTLZ_H
26 #define PAGMO_PROBLEM_DTLZ_H
30 #include "../serialization.h"
32 #include "base_dtlz.h"
34 namespace pagmo{
namespace problem {
85 std::string get_name()
const;
102 friend class boost::serialization::access;
103 template <
class Archive>
104 void serialize(Archive &ar,
const unsigned int)
106 ar & boost::serialization::base_object<base_dtlz>(*this);
107 ar &
const_cast<unsigned int&
>(m_problem_number);
108 ar &
const_cast<double &
>(m_alpha);
111 const unsigned int m_problem_number;
112 const double m_alpha;
119 #endif // PAGMO_PROBLEM_DTLZ_H
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base problem.
std::vector< double > decision_vector
Decision vector type.
Base DTLZ Multi-objective optimization problem.
std::vector< double > fitness_vector
Fitness vector type.
decision_vector::size_type size_type
Problem's size type: the same as pagmo::decision_vector's size type.