Browse Source

Fixed an error in the interface of the LpSolvers.

Former-commit-id: 65e415efb2
tempestpy_adaptions
PBerger 11 years ago
parent
commit
b7ad4398e2
  1. 2
      src/solver/GurobiLpSolver.h

2
src/solver/GurobiLpSolver.h

@ -176,7 +176,7 @@ namespace storm {
throw storm::exceptions::NotImplementedException() << "This version of StoRM was compiled without support for Gurobi. Yet, a method was called that requires this support. Please choose a version of support with Gurobi support.";
}
virtual uint_fast64_t addBinaryVariable(std::string const& name, double objectiveFunctionCoefficient = 0) override {
virtual void addBinaryVariable(std::string const& name, double objectiveFunctionCoefficient = 0) override {
throw storm::exceptions::NotImplementedException() << "This version of StoRM was compiled without support for Gurobi. Yet, a method was called that requires this support. Please choose a version of support with Gurobi support.";
}

Loading…
Cancel
Save