diff --git a/src/storm/storage/prism/Program.cpp b/src/storm/storage/prism/Program.cpp index a87ea5888..387423066 100644 --- a/src/storm/storage/prism/Program.cpp +++ b/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; } }