Browse Source

Fixed optimization direction when exporting standard petri net properties to jani

tempestpy_adaptions
TimQu 6 years ago
parent
commit
003922a9e4
  1. 2
      src/storm-gspn/builder/JaniGSPNBuilder.cpp

2
src/storm-gspn/builder/JaniGSPNBuilder.cpp

@ -296,7 +296,7 @@ namespace storm {
auto expTimeDeadlock = std::make_shared<storm::logic::TimeOperatorFormula>( auto expTimeDeadlock = std::make_shared<storm::logic::TimeOperatorFormula>(
std::make_shared<storm::logic::EventuallyFormula>(deadlock, storm::logic::FormulaContext::Time), std::make_shared<storm::logic::EventuallyFormula>(deadlock, storm::logic::FormulaContext::Time),
storm::logic::OperatorInformation(storm::solver::OptimizationDirection::Maximize));
storm::logic::OperatorInformation(storm::solver::OptimizationDirection::Minimize));
standardProperties.emplace_back("MinExpTimeDeadlock", expTimeDeadlock, emptyVariableSet, "The minimal expected time to reach a deadlock."); standardProperties.emplace_back("MinExpTimeDeadlock", expTimeDeadlock, emptyVariableSet, "The minimal expected time to reach a deadlock.");
} }

Loading…
Cancel
Save