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.
Conception/drake-master/solvers/no_csdp.cc

24 lines
590 B

/* clang-format off to disable clang-format-includes */
#include "drake/solvers/csdp_solver.h"
/* clang-format on */
#include <stdexcept>
namespace drake {
namespace solvers {
bool CsdpSolver::is_available() {
return false;
}
void CsdpSolver::DoSolve(const MathematicalProgram&, const Eigen::VectorXd&,
const SolverOptions&,
MathematicalProgramResult*) const {
throw std::runtime_error(
"The CSDP bindings were not compiled. You'll need to use a different "
"solver.");
}
} // namespace solvers
} // namespace drake