Browse Source

model building: Fixed correctly setting the number of reserved bits for unbounded state variables from the cli option

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
e9ab8e65d4
  1. 2
      src/storm-cli-utilities/model-handling.h

2
src/storm-cli-utilities/model-handling.h

@ -444,7 +444,7 @@ namespace storm {
if (buildSettings.isExplorationChecksSet()) {
options.setExplorationChecks();
}
options.setReservedBitsForUnboundedVariables(options.getReservedBitsForUnboundedVariables());
options.setReservedBitsForUnboundedVariables(buildSettings.getBitsForUnboundedVariables());
options.setAddOutOfBoundsState(buildSettings.isBuildOutOfBoundsStateSet());
if (buildSettings.isBuildFullModelSet()) {

Loading…
Cancel
Save