Browse Source

Fixed wrong type.

Former-commit-id: 59e08c3669
tempestpy_adaptions
dehnert 11 years ago
parent
commit
66d6fa3bb4
  1. 2
      src/solver/GlpkLpSolver.h

2
src/solver/GlpkLpSolver.h

@ -184,7 +184,7 @@ namespace storm {
throw storm::exceptions::NotImplementedException() << "This version of StoRM was compiled without support for glpk. Yet, a method was called that requires this support. Please choose a version of support with glpk 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 glpk. Yet, a method was called that requires this support. Please choose a version of support with glpk support.";
}

Loading…
Cancel
Save