Browse Source

export the number of choices into drn

tempestpy_adaptions
Sebastian Junges 5 years ago
parent
commit
f322149398
  1. 1
      src/storm/utility/DirectEncodingExporter.cpp

1
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<ValueType> const& matrix = sparseModel->getTransitionMatrix();

Loading…
Cancel
Save