forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
equality_constrained_qp_solver.h
48 lines (38 loc) · 1.35 KB
/
equality_constrained_qp_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
#pragma once
#include <string>
#include "drake/common/drake_copyable.h"
#include "drake/solvers/solver_base.h"
namespace drake {
namespace solvers {
/**
* Solves a quadratic program with equality constraint.
*
* This program doesn't depend on the initial guess.
*
* The user can set the following options:
*
* - FeasibilityTolOptionName(). The feasible solution (both primal and dual
* variables) should satisfy their constraints, with error no larger than
* this value. The default is Eigen::dummy_precision().
*/
class EqualityConstrainedQPSolver final : public SolverBase {
public:
DRAKE_NO_COPY_NO_MOVE_NO_ASSIGN(EqualityConstrainedQPSolver)
EqualityConstrainedQPSolver();
~EqualityConstrainedQPSolver() final;
/// @returns string key for SolverOptions to set the feasibility tolerance.
static std::string FeasibilityTolOptionName();
/// @name Static versions of the instance methods with similar names.
//@{
static SolverId id();
static bool is_available();
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