Browse Source

fixed output

tempestpy_adaptions
hannah 3 years ago
committed by Stefan Pranger
parent
commit
f596d7f486
  1. 1
      src/storm/automata/LTL2DeterministicAutomaton.cpp
  2. 2
      src/storm/modelchecker/helper/ltl/SparseLTLHelper.cpp

1
src/storm/automata/LTL2DeterministicAutomaton.cpp

@ -47,6 +47,7 @@ namespace storm {
aut = to_generalized_rabin(aut,true);
}
STORM_LOG_INFO("The deterministic automaton has acceptance condition: "<< aut->get_acceptance());
STORM_LOG_INFO(aut->get_acceptance());

2
src/storm/modelchecker/helper/ltl/SparseLTLHelper.cpp

@ -38,7 +38,7 @@ namespace storm {
auto sat = subResult.getTruthValuesVector();
apSets[p.first] = std::move(sat);
STORM_LOG_INFO(" Atomic proposition \"" << p.first << "\" is satisfied by " << sat.getNumberOfSetBits() << " states.");
STORM_LOG_INFO(" Atomic proposition \"" << p.first << "\" is satisfied by " << apSets[p.first].getNumberOfSetBits() << " states.");
}
return apSets;
}

Loading…
Cancel
Save