コード例 #1
0
ファイル: MapAgent.cs プロジェクト: PaulMineau/AIMA.Net
	public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
			int maxGoalsToFormulate) : base ( maxGoalsToFormulate) {
		
		this.map = map;
		this.notifier = notifier;
        this._search = search;
	}
コード例 #2
0
ファイル: MapAgent.cs プロジェクト: rothmichaeld/aima-csharp
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search,
                 int maxGoalsToFormulate) : base(maxGoalsToFormulate)
 {
     this.map      = map;
     this.notifier = notifier;
     _search       = search;
 }
コード例 #3
0
ファイル: MapAgent.cs プロジェクト: PaulMineau/AIMA.Net
	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
ファイル: MapAgent.cs プロジェクト: rothmichaeld/aima-csharp
 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
ファイル: MapAgent.cs プロジェクト: claudiu04/AIMA.Net
 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
ファイル: MapAgent.cs プロジェクト: PaulMineau/AIMA.Net
	public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search) {
		this.map = map;
		this.notifier = notifier;
        this._search = search;
	}
コード例 #7
0
ファイル: MapAgent.cs プロジェクト: rothmichaeld/aima-csharp
 public MapAgent(Map map, EnvironmentViewNotifier notifier, Search search)
 {
     this.map      = map;
     this.notifier = notifier;
     _search       = search;
 }