Browse Source

but state valuations as comments into drn

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

4
src/storm/utility/DirectEncodingExporter.cpp

@ -115,6 +115,10 @@ namespace storm {
}
}
os << std::endl;
// Write state valuations as comments
if(sparseModel->hasStateValuations()) {
os << "//" << sparseModel->getStateValuations().getStateInfo(group) << std::endl;
}
// Write probabilities
typename storm::storage::SparseMatrix<ValueType>::index_type start = matrix.hasTrivialRowGrouping() ? group : matrix.getRowGroupIndices()[group];

Loading…
Cancel
Save