Browse Source

Minor fixes for implementation of GlpkLpSolver if glpk is unavailable.

Former-commit-id: 778f93a33c
tempestpy_adaptions
dehnert 11 years ago
parent
commit
c336fd7ff8
  1. 2
      src/solver/GlpkLpSolver.h

2
src/solver/GlpkLpSolver.h

@ -62,7 +62,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 GlpkLpSolver() {
virtual ~GlpkLpSolver() {
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