Browse Source

only print goal related actions if there is one

overwrites
sp 10 months ago
parent
commit
801dc5b210
  1. 4
      util/PrismModulesPrinter.cpp

4
util/PrismModulesPrinter.cpp

@ -193,7 +193,7 @@ namespace prism {
os << "\n" << actionStream.str(); os << "\n" << actionStream.str();
actionStream.str(std::string()); actionStream.str(std::string());
if(agentNameAndPositionMap.size() > 1 && agentName == "Agent") printDoneActions(agentName);
if(agentNameAndPositionMap.size() > 1 && agentName == "Agent" && anyGoals) printDoneActions(agentName);
os << "endmodule\n\n"; os << "endmodule\n\n";
} }
@ -502,7 +502,7 @@ namespace prism {
else os << ", "; else os << ", ";
os << actionName; os << actionName;
} }
if(agentName == "Agent") os << ", [Agent_on_goal]";
if(agentName == "Agent" && anyGoals) os << ", [Agent_on_goal]";
os << "\nendplayer\n"; os << "\nendplayer\n";
} }
Loading…
Cancel
Save