Browse Source

fix reorder warning

tempestpy_adaptions
Stefan Pranger 4 years ago
parent
commit
2225ebcbe8
  1. 12
      src/storm/storage/prism/Program.h

12
src/storm/storage/prism/Program.h

@ -757,18 +757,18 @@ namespace storm {
// A mapping of formula names to their corresponding indices. // A mapping of formula names to their corresponding indices.
std::map<std::string, uint_fast64_t> formulaToIndexMap; std::map<std::string, uint_fast64_t> formulaToIndexMap;
// The modules associated with the program.
std::vector<Module> modules;
// A mapping of module names to their indices.
std::map<std::string, uint_fast64_t> moduleToIndexMap;
// The players associated with the program. // The players associated with the program.
std::vector<Player> players; std::vector<Player> players;
// A mapping of player names to their indices. // A mapping of player names to their indices.
std::map<std::string, uint_fast64_t> playerToIndexMap; std::map<std::string, uint_fast64_t> playerToIndexMap;
// The modules associated with the program.
std::vector<Module> modules;
// A mapping of module names to their indices.
std::map<std::string, uint_fast64_t> moduleToIndexMap;
// The reward models associated with the program. // The reward models associated with the program.
std::vector<RewardModel> rewardModels; std::vector<RewardModel> rewardModels;

Loading…
Cancel
Save