diff --git a/src/storm/utility/DirectEncodingExporter.cpp b/src/storm/utility/DirectEncodingExporter.cpp index b21b68a91..a5c152994 100644 --- a/src/storm/utility/DirectEncodingExporter.cpp +++ b/src/storm/utility/DirectEncodingExporter.cpp @@ -63,6 +63,7 @@ namespace storm { } os << std::endl; os << "@nr_states" << std::endl << sparseModel->getNumberOfStates() << std::endl; + os << "@nr_choices" << std::endl << sparseModel->getNumberOfChoices() << std::endl; os << "@model" << std::endl; storm::storage::SparseMatrix const& matrix = sparseModel->getTransitionMatrix();