Browse Source

Fixed warning

tempestpy_adaptions
Matthias Volk 6 years ago
parent
commit
9b11fed0c8
  1. 2
      src/storm-pars/settings/modules/RegionSettings.cpp

2
src/storm-pars/settings/modules/RegionSettings.cpp

@ -137,7 +137,9 @@ namespace storm {
bool RegionSettings::check() const {
if (isRefineSet() && isExtremumSet()) {
STORM_LOG_ERROR("Can not compute extremum values AND perform region refinement.");
return false;
}
return true;
}
bool RegionSettings::isPrintNoIllustrationSet() const {

Loading…
Cancel
Save