Пример #1
0
	public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
			int maxGoalsToFormulate) : base ( maxGoalsToFormulate) {
		
		this.map = map;
		this.notifier = notifier;
        this._search = search;
	}
Пример #2
0
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
                 int maxGoalsToFormulate) : base(maxGoalsToFormulate)
 {
     this.map      = map;
     this.notifier = notifier;
     _search       = search;
 }
Пример #3
0
	public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
			System.String[] goalTests) : base (goalTests.Length){
		
		this.map = map;
		this.notifier = notifier;
        this._search = search;
        this.goalTests = new System.String[goalTests.Length];
        System.Array.Copy(goalTests, 0, this.goalTests, 0, goalTests.Length);
	}
Пример #4
0
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
                 String[] goals) : base(goals.Length)
 {
     this.map      = map;
     this.notifier = notifier;
     _search       = search;
     this.goals    = new String[goals.Length];
     Array.Copy(goals, 0, this.goals, 0, goals.Length);
 }
Пример #5
0
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
                 System.String[] goalTests) : base(goalTests.Length)
 {
     this.map       = map;
     this.notifier  = notifier;
     this._search   = search;
     this.goalTests = new System.String[goalTests.Length];
     System.Array.Copy(goalTests, 0, this.goalTests, 0, goalTests.Length);
 }
Пример #6
0
	public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search) {
		this.map = map;
		this.notifier = notifier;
        this._search = search;
	}
Пример #7
0
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search)
 {
     this.map      = map;
     this.notifier = notifier;
     _search       = search;
 }