forked from pz4kybsvg/Conception
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
590 B
24 lines
590 B
/* clang-format off to disable clang-format-includes */
|
|
#include "drake/solvers/osqp_solver.h"
|
|
/* clang-format on */
|
|
|
|
#include <stdexcept>
|
|
|
|
namespace drake {
|
|
namespace solvers {
|
|
|
|
bool OsqpSolver::is_available() {
|
|
return false;
|
|
}
|
|
|
|
void OsqpSolver::DoSolve(const MathematicalProgram&, const Eigen::VectorXd&,
|
|
const SolverOptions&,
|
|
MathematicalProgramResult*) const {
|
|
throw std::runtime_error(
|
|
"The OSQP bindings were not compiled. You'll need to use a different "
|
|
"solver.");
|
|
}
|
|
|
|
} // namespace solvers
|
|
} // namespace drake
|