CS代考程序代写 algorithm 10/21/2019 CSCI 561 (195 unread)

10/21/2019 CSCI 561 (195 unread)
question
264 views
MAX or MIN player
While playing the game, how do we determine if our agent is min or max player(is there any criteria mentioned)?
Suppose if I choose(based on some conditions) that my player is min but the opponent agent also chose to play as min won’t that create a problem as it will become a min-min game instead of min-max game?
Updated 5 days ago by Anonymous
the students’ answer, where students collectively construct a single answer
Your agent is always the max agent.
Updated 5 days ago by Johnson Lien
the instructors’ answer, where instructors collectively construct a single answer
You only get moves from the opponent. How your opponent arrives at them is irrelevant.
Updated 5 days ago by Daniel Link
followup discussions for lingering questions and comments
Resolved
Unresolved
Anonymous 5 days ago
When all the agents play as max player wont that become a max-max play instead of min-max play?
Anonymous 5 days ago The other agent is maximizing an evaluation function that is unknown to you.
Anonymous 5 days ago In that case, in our min max algorithm, we will be considering the moves our opponent takes as a min player. Should we make the opponent also max and implement a max-max game?
https://piazza.com/class/jzob0qt1owq15p?cid=487
1/2
2wh

10/21/2019 CSCI 561 (195 unread)
Anonymous 5 days ago Your opponent will maximize his own evaluation function, which attributes higher scores to scenarios beneficial to him and lower scores to scenarios beneficial to you. In other words, the other agent trying to maximizing his evaluation function is the same as trying to minimize yours.
Daniel Link 5 days ago Why would you care how your opponent arrives at their moves?
Ryan Thomas 4 days ago I think you should look at the lecture notes and review what it means to be the min and the mac and how minimax works.
https://piazza.com/class/jzob0qt1owq15p?cid=487
2/2

Leave a Reply

Your email address will not be published. Required fields are marked *