Esempio n. 1
0
 public MapAgent(IMap map, INotifyEnvironmentViews notifier, ISearch search,
                 int maxGoalsToFormulate) : base(maxGoalsToFormulate)
 {
     this.map      = map;
     this.notifier = notifier;
     this.search   = search;
 }
Esempio n. 2
0
 public MapAgent(IMap map, INotifyEnvironmentViews notifier, ISearch search,
                 string[] goalTests) : base(goalTests.Length)
 {
     ;
     this.map       = map;
     this.notifier  = notifier;
     this.search    = search;
     this.goalTests = new String[goalTests.Length];
     goalTests.CopyTo(this.goalTests, 0);
 }
Esempio n. 3
0
 public MapAgent(IMap map, INotifyEnvironmentViews notifier, ISearch search)
 {
     this.map      = map;
     this.notifier = notifier;
     this.search   = search;
 }