Browse Source

Fixed return type of addBinaryVariable

Former-commit-id: 44fc99b9a3
tempestpy_adaptions
David_Korzeniewski 11 years ago
parent
commit
37ef3feebb
  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