25 #ifndef PAGMO_ALGORITHM_NLOPT_AUG_LAG_H
26 #define PAGMO_ALGORITHM_NLOPT_AUG_LAG_H
30 #include "../config.h"
31 #include "../serialization.h"
32 #include "base_nlopt.h"
34 namespace pagmo {
namespace algorithm {
59 nlopt_aug_lag(
int=1,
int = 100,
const double & = 1E-6,
const double & = 1E-6,
int = 100,
const double & = 1E-6,
const double & = 1E-6);
61 std::string get_name()
const;
62 void set_local(
size_t)
const;
63 std::string human_readable_extra()
const;
65 friend class boost::serialization::access;
66 template <
class Archive>
67 void serialize(Archive &ar,
const unsigned int)
69 ar & boost::serialization::base_object<base_nlopt>(*this);
71 ar &
const_cast<std::size_t &
>(m_aux_max_iter);
72 ar &
const_cast<double &
>(m_aux_ftol);
73 ar &
const_cast<double &
>(m_aux_xtol);
76 const std::size_t m_aux_max_iter;
77 const double m_aux_ftol;
78 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.
Base class for wrapping NLopt's algorithms.