Browse Source

..

Former-commit-id: 9b893cc522
tempestpy_adaptions
TimQu 9 years ago
parent
commit
9d942bc78f
  1. 2
      src/cli/entrypoints.h

2
src/cli/entrypoints.h

@ -157,7 +157,7 @@ namespace storm {
modelProgramPair.model->getNumberOfStates() << ";" <<
modelProgramPair.model->getNumberOfTransitions() << ";" << std::endl;
std::cout << "Num of states with nonconstant transitions; Num of nonconstant transitions" << std::endl;
std::cout << "NUM_PARS" << modelProgramPair.model->as<storm::models::sparse::Model<ValueType>>().getTransitionMatrix().getNonconstantRowGroupCont() << ";" << modelProgramPair.model->as<storm::models::sparse::Model<ValueType>>().getTransitionMatrix().getNonconstantRowGroupCont() << std::endl;
std::cout << "NUM_PARS" << modelProgramPair.model->as<storm::models::sparse::Model<ValueType>>()->getTransitionMatrix().getNonconstantRowGroupCont() << ";" << modelProgramPair.model->as<storm::models::sparse::Model<ValueType>>()->getTransitionMatrix().getNonconstantRowGroupCont() << std::endl;
// Preprocess the model if needed.
BRANCH_ON_MODELTYPE(modelProgramPair.model, modelProgramPair.model, ValueType, LibraryType, preprocessModel, formulas);

Loading…
Cancel
Save