Browse Source

Fixed missing ;

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
fe5cd4db86
  1. 2
      src/storm/storage/StronglyConnectedComponentDecomposition.cpp

2
src/storm/storage/StronglyConnectedComponentDecomposition.cpp

@ -69,7 +69,7 @@ namespace storm {
// The forceTopologicalSort flag can be ignored as this method always generates a topological sort. // The forceTopologicalSort flag can be ignored as this method always generates a topological sort.
// Prepare the stack used for turning the recursive procedure into an iterative one. // Prepare the stack used for turning the recursive procedure into an iterative one.
STORM_LOG_ASSERT(recursionStateStack.empty(), "Expected an empty recursion stack.")
STORM_LOG_ASSERT(recursionStateStack.empty(), "Expected an empty recursion stack.");
recursionStateStack.push_back(startState); recursionStateStack.push_back(startState);
while (!recursionStateStack.empty()) { while (!recursionStateStack.empty()) {

Loading…
Cancel
Save