OP  0.1
OP is a optimization solver plugin package
 All Classes Namespaces Functions Variables Typedefs Enumerations Friends
nlopt_op.cpp
1 // NLopt op::Optimizer implementation
2 
3 #include "nlopt_op.hpp"
4 #include <iostream>
5 
12 extern "C" std::unique_ptr<op::NLopt<op::nlopt_index_type>> load_optimizer(op::Vector<std::vector<double>>& variables,
13  op::NLoptOptions& options)
14 {
15  return std::make_unique<op::NLopt<op::nlopt_index_type>>(variables, options);
16 }
Abstracted Optimization Vector container.
Definition: op.hpp:80
Options specific for nlopt. They are made to look like ipopt&#39;s interface.
Definition: nlopt_op.hpp:55