forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nlopt_solver_common.cc
62 lines (49 loc) · 1.76 KB
/
nlopt_solver_common.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* clang-format off to disable clang-format-includes */
#include "drake/solvers/nlopt_solver.h"
/* clang-format on */
#include "drake/common/never_destroyed.h"
#include "drake/solvers/mathematical_program.h"
namespace drake {
namespace solvers {
NloptSolver::NloptSolver()
: SolverBase(id(), &is_available, &is_enabled,
&ProgramAttributesSatisfied) {}
NloptSolver::~NloptSolver() = default;
SolverId NloptSolver::id() {
static const never_destroyed<SolverId> singleton{"NLopt"};
return singleton.access();
}
bool NloptSolver::is_enabled() {
return true;
}
bool NloptSolver::ProgramAttributesSatisfied(const MathematicalProgram& prog) {
static const never_destroyed<ProgramAttributes> solver_capabilities(
std::initializer_list<ProgramAttribute>{
ProgramAttribute::kGenericConstraint,
ProgramAttribute::kLinearEqualityConstraint,
ProgramAttribute::kLinearConstraint,
ProgramAttribute::kQuadraticConstraint,
ProgramAttribute::kLorentzConeConstraint,
ProgramAttribute::kRotatedLorentzConeConstraint,
ProgramAttribute::kGenericCost, ProgramAttribute::kLinearCost,
ProgramAttribute::kQuadraticCost, ProgramAttribute::kCallback});
return AreRequiredAttributesSupported(prog.required_capabilities(),
solver_capabilities.access());
}
std::string NloptSolver::ConstraintToleranceName() {
return "constraint_tol";
}
std::string NloptSolver::XRelativeToleranceName() {
return "xtol_rel";
}
std::string NloptSolver::XAbsoluteToleranceName() {
return "xtol_abs";
}
std::string NloptSolver::MaxEvalName() {
return "max_eval";
}
std::string NloptSolver::AlgorithmName() {
return "algorithm";
}
} // namespace solvers
} // namespace drake