Browse Source

Got rid of an outdated error message for reused actions in JitBuilder

main
Sebastian Junges 8 years ago
parent
commit
7aa6215ed3
  1. 2
      src/storm/builder/jit/ExplicitJitJaniModelBuilder.cpp

2
src/storm/builder/jit/ExplicitJitJaniModelBuilder.cpp

@ -131,7 +131,7 @@ namespace storm {
STORM_LOG_THROW(false, storm::exceptions::InvalidArgumentException, "The input model contains undefined constants that influence the graph structure of the underlying model, which is not allowed.");
}
#endif
STORM_LOG_THROW(!model.reusesActionsInComposition(), storm::exceptions::InvalidArgumentException, "The jit JANI model builder currently does not support reusing actions in parallel composition");
//STORM_LOG_THROW(!model.reusesActionsInComposition(), storm::exceptions::InvalidArgumentException, "The jit JANI model builder currently does not support reusing actions in parallel composition");
// Comment this in to print the JANI model for debugging purposes.
// this->model.makeStandardJaniCompliant();

Loading…
Cancel
Save