Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+14 votes

For the graph comparing the search depth and the run time should we have a graph for each heuristic that we created or just our best/worst heuristic?

asked in CSC320 by (1 point)
+1

No, you should use only one heuristic and do it for the MinMax only. You will be comparing the run time for the first move with for the different depth limit and create a graph out of it. You could use the provided heuristic if you want.

2 Answers

+7 votes
 
Best answer

I did an analysis of my best one for my assignment.

answered by (1 point)
selected by
+11 votes

To add on to this question... are we looking at both ExpectiMax and MiniMax for the graph? Or would both of those take the same amount of time to search?

answered by (1 point)
...