diff --git a/src/storm/storage/prism/Player.cpp b/src/storm/storage/prism/Player.cpp index 845c45dc5..2905a3b29 100644 --- a/src/storm/storage/prism/Player.cpp +++ b/src/storm/storage/prism/Player.cpp @@ -21,7 +21,7 @@ namespace storm { std::ostream& operator<<(std::ostream& stream, Player const& player) { stream << "player"; if (player.getName() != "") { - stream << " \"" << player.getName() << "\""; + stream << " " << player.getName(); } stream << std::endl; for (auto const& module : player.getModules()) { @@ -33,7 +33,8 @@ namespace storm { stream << "[" << command.getActionName() << "] "; //&command != (player.getCommands()).back ? std::cout << "," : std::cout << std::endl; } - stream << "player" << std::endl; + stream << std::endl; + stream << "endplayer" << std::endl; return stream; } } // namespace prism