示例#1
0
        public ScenarioModel()
        {
            _transitionGraph = new Graph <WayPoint, double>();
            _roadGraph       = new Graph <WayPoint, string>();
            _scenarioConfig  = new ExperimentConfiguration();
            _modulesSettings = new Dictionary <string, Dictionary <string, object> >();

            Map         = new Enviroment.Map();
            AgentGroups = new List <AgentsGroup>();
            Services    = new List <ServiceModel>();

            StartTime = DateTime.Now;
            EndTime   = DateTime.Now.AddHours(5);
        }
        public ScenarioModel()
        {
            _transitionGraph = new Graph<WayPoint, double>();
            _roadGraph = new Graph<WayPoint, string>();
            _scenarioConfig = new ExperimentConfiguration();
            _modulesSettings = new Dictionary<string, Dictionary<string, object>>();

            Map = new Enviroment.Map();
            AgentGroups = new List<AgentsGroup>();
            Services = new List<ServiceModel>();

            StartTime = DateTime.Now;
            EndTime = DateTime.Now.AddHours(5);
        }