Browse Source

Added missing method in case z3 lp solver is not available.

tempestpy_adaptions
Tim Quatmann 6 years ago
parent
commit
160c6a67f4
  1. 5
      src/storm/solver/Z3LpSolver.cpp

5
src/storm/solver/Z3LpSolver.cpp

@ -393,6 +393,11 @@ namespace storm {
throw storm::exceptions::NotImplementedException() << "This version of storm was compiled without Z3 or the version of Z3 does not support optimization. Yet, a method was called that requires this support.";
}
template<typename ValueType>
void Z3LpSolver<ValueType>::writeModelToFile(std::string const& filename) const {
throw storm::exceptions::NotImplementedException() << "This version of storm was compiled without Z3 or the version of Z3 does not support optimization. Yet, a method was called that requires this support.";
}
template<typename ValueType>
void Z3LpSolver<ValueType>::push() {
throw storm::exceptions::NotImplementedException() << "This version of storm was compiled without Z3 or the version of Z3 does not support optimization. Yet, a method was called that requires this support.";

Loading…
Cancel
Save