Browse Source

fixes issue #9 raised by Joachim Klein

tempestpy_adaptions
dehnert 7 years ago
parent
commit
ecade3f857
  1. 5
      src/storm/storage/prism/Program.cpp

5
src/storm/storage/prism/Program.cpp

@ -492,6 +492,11 @@ namespace storm {
} }
} }
// If there are no variables, there is no restriction on the initial states.
if (!result.isInitialized()) {
result = manager->boolean(true);
}
return result; return result;
} }
} }

Loading…
Cancel
Save