Browse Source

fixed getting/setting the restart threshold in gmmxx environment

tempestpy_adaptions
TimQu 7 years ago
parent
commit
9c6672778b
  1. 4
      src/storm/environment/solver/GmmxxSolverEnvironment.cpp

4
src/storm/environment/solver/GmmxxSolverEnvironment.cpp

@ -38,11 +38,11 @@ namespace storm {
} }
uint64_t const& GmmxxSolverEnvironment::getRestartThreshold() const { uint64_t const& GmmxxSolverEnvironment::getRestartThreshold() const {
return maxIterationCount;
return restartThreshold;
} }
void GmmxxSolverEnvironment::setRestartThreshold(uint64_t value) { void GmmxxSolverEnvironment::setRestartThreshold(uint64_t value) {
maxIterationCount = value;
restartThreshold = value;
} }
uint64_t const& GmmxxSolverEnvironment::getMaximalNumberOfIterations() const { uint64_t const& GmmxxSolverEnvironment::getMaximalNumberOfIterations() const {

Loading…
Cancel
Save