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.

15 lines
324 B

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