25 #ifndef PAGMO_ALGORITHM_NLOPT_SLSQP_H
26 #define PAGMO_ALGORITHM_NLOPT_SLSQP_H
30 #include "../config.h"
31 #include "../serialization.h"
32 #include "base_nlopt.h"
34 namespace pagmo {
namespace algorithm {
68 nlopt_slsqp(
int = 100,
const double & = 1E-6,
const double & = 1E-6);
70 std::string get_name()
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_nlopt>(*this);
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base algorithm.
Base class for wrapping NLopt's algorithms.
Wrapper for NLopt's Slsqp algorithm.