25 #ifndef PAGMO_ALGORITHM_NLOPT_COBYLA_H
26 #define PAGMO_ALGORITHM_NLOPT_COBYLA_H
28 #include "../config.h"
29 #include "../serialization.h"
30 #include "base_nlopt.h"
32 namespace pagmo {
namespace algorithm {
45 nlopt_cobyla(
int = 100,
const double & = 1E-6,
const double & = 1E-6);
47 std::string get_name()
const;
49 friend class boost::serialization::access;
50 template <
class Archive>
51 void serialize(Archive &ar,
const unsigned int)
53 ar & boost::serialization::base_object<base_nlopt>(*this);
boost::shared_ptr< base > base_ptr
Alias for shared pointer to base algorithm.
Wrapper for NLopt's COBYLA algorithm.
Base class for wrapping NLopt's algorithms.