You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
563 B

  1. #pragma once
  2. #include <string>
  3. #include "cell.h"
  4. typedef std::string AgentName;
  5. typedef size_t ViewDirection;
  6. typedef std::pair<std::string, coordinates> AgentNameAndPosition;
  7. typedef AgentNameAndPosition KeyNameAndPosition;
  8. typedef std::map<AgentNameAndPosition::first_type, AgentNameAndPosition::second_type> AgentNameAndPositionMap;
  9. typedef std::map<KeyNameAndPosition::first_type, KeyNameAndPosition::second_type> KeyNameAndPositionMap;
  10. typedef std::pair<cell, std::string> CellAndCondition;
  11. namespace prism {
  12. enum class ModelType {
  13. MDP, SMG
  14. };
  15. }