private void btnIterativeDeeping_Click(object sender, System.EventArgs e) { this.textBox1.Text = "NQueensDemo Iterative DS -->" + System.Environment.NewLine; Problem problem = new Problem(new NQueensBoard(8),new NQueensSuccessorFunction(), new NQueensGoalTest()); Search search = new IterativeDeepeningSearch(); SearchAgent agent = new SearchAgent(problem,search); printActions(agent.getActions()); printInstrumentation(agent.getInstrumentation()); }
private void btnIDLS_Click(object sender, System.EventArgs e) { this.textBox1.Text = "EightPuzzleDemo Iterative DLS-->" + System.Environment.NewLine; Problem problem = new Problem(random1, new EightPuzzleSuccessorFunction(), new EightPuzzleGoalTest()); Search search = new IterativeDeepeningSearch(); SearchAgent agent = new SearchAgent(problem, search); printActions(agent.getActions()); printInstrumentation(agent.getInstrumentation()); }