forked from sammy-tri/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipopt_solver.h
70 lines (57 loc) · 1.9 KB
/
ipopt_solver.h
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
63
64
65
66
67
68
69
70
#pragma once
#include <ostream>
#include <string>
#include <Eigen/Core>
#include "drake/common/drake_copyable.h"
#include "drake/solvers/solver_base.h"
namespace drake {
namespace solvers {
/**
* The Ipopt solver details after calling Solve() function. The user can call
* MathematicalProgramResult::get_solver_details<IpoptSolver>() to obtain the
* details.
*/
struct IpoptSolverDetails {
/**
* The final status of the solver. Please refer to section 6 in
* Introduction to Ipopt: A tutorial for downloading, installing, and using
* Ipopt.
* You could also find the meaning of the status as Ipopt::SolverReturn
* defined in IpAlgTypes.hpp
*/
int status{};
/// The final value for the lower bound multiplier.
Eigen::VectorXd z_L;
/// The final value for the upper bound multiplier.
Eigen::VectorXd z_U;
/// The final value for the constraint function.
Eigen::VectorXd g;
/// The final value for the constraint multiplier.
Eigen::VectorXd lambda;
/** Convert status field to string. This function is useful if you want to
* interpret the meaning of status.
*/
const char* ConvertStatusToString() const;
};
class IpoptSolver final : public SolverBase {
public:
DRAKE_NO_COPY_NO_MOVE_NO_ASSIGN(IpoptSolver)
/// Type of details stored in MathematicalProgramResult.
using Details = IpoptSolverDetails;
IpoptSolver();
~IpoptSolver() final;
/// @name Static versions of the instance methods with similar names.
//@{
static SolverId id();
static bool is_available();
static bool is_enabled();
static bool ProgramAttributesSatisfied(const MathematicalProgram&);
//@}
// A using-declaration adds these methods into our class's Doxygen.
using SolverBase::Solve;
private:
void DoSolve(const MathematicalProgram&, const Eigen::VectorXd&,
const SolverOptions&, MathematicalProgramResult*) const final;
};
} // namespace solvers
} // namespace drake