forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgurobi_qp.h
49 lines (43 loc) · 2.05 KB
/
gurobi_qp.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
#pragma once
#include <set>
#include <vector>
#include <Eigen/Dense>
#include <gurobi_c++.h>
#define CGE(call, env) \
{ \
int gerror; \
gerror = call; \
if (gerror) \
std::cerr << "Gurobi error " << GRBgeterrormsg(env) << std::endl; \
}
GRBmodel* gurobiQP(
GRBenv* env, std::vector<Eigen::MatrixXd*> QblkDiag,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& f,
const Eigen::MatrixXd& Aeq, const Eigen::VectorXd& beq,
const Eigen::MatrixXd& Ain, const Eigen::VectorXd& bin,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& lb, Eigen::VectorXd& ub, std::set<int>& active,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& x,
double active_set_slack_tol = 1e-4);
// template <typename tA, typename tB, typename tC, typename tD, typename tE>
// GRBmodel* gurobiQP(GRBenv *env, std::vector< Eigen::Map<tA> > QblkDiag,
// Eigen::VectorXd& f, const Eigen::MatrixBase<tB>& Aeq, const
// Eigen::MatrixBase<tC>& beq, const Eigen::MatrixBase<tD>& Ain, const
// Eigen::MatrixBase<tE>& bin, Eigen::VectorXd& lb, Eigen::VectorXd& ub,
// std::set<int>& active, Eigen::VectorXd& x);
GRBmodel* gurobiActiveSetQP(
GRBenv* env, std::vector<Eigen::MatrixXd*> QblkDiag,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& f,
const Eigen::MatrixXd& Aeq, const Eigen::VectorXd& beq,
const Eigen::MatrixXd& Ain, const Eigen::VectorXd& bin,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& lb, Eigen::VectorXd& ub,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
int*& vbasis, int vbasis_len,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
int*& cbasis, int cbasis_len,
// TODO(#2274) Fix NOLINTNEXTLINE(runtime/references).
Eigen::VectorXd& x);