25 #ifndef PAGMO_ALGORITHM_NLOPT_AUG_LAG_EQ_H
26 #define PAGMO_ALGORITHM_NLOPT_AUG_LAG_EQ_H
30 #include "../config.h"
31 #include "../serialization.h"
32 #include "base_nlopt.h"
34 namespace pagmo {
namespace algorithm {
61 nlopt_aug_lag_eq(
int=1,
int = 100,
const double & = 1E-6,
const double & = 1E-6,
int = 100,
const double & = 1E-6,
const double & = 1E-6);
63 std::string get_name()
const;
64 void set_local(
size_t)
const;
65 std::string human_readable_extra()
const;
67 friend class boost::serialization::access;
68 template <
class Archive>
69 void serialize(Archive &ar,
const unsigned int)
71 ar & boost::serialization::base_object<base_nlopt>(*this);
73 ar &
const_cast<std::size_t &
>(m_aux_max_iter);
74 ar &
const_cast<double &
>(m_aux_ftol);
75 ar &
const_cast<double &
>(m_aux_xtol);
78 const std::size_t m_aux_max_iter;
79 const double m_aux_ftol;
80 const double m_aux_xtol;
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base algorithm.
Wrapper for NLopt's Augmented Lagrangian algorithm (using penalties only for the equalities) ...
Base class for wrapping NLopt's algorithms.