-
In current code, can agents do multiple actions in a turn? What is the general view on this? What do you guys think? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hey @maxkonrad , yes bots/players can do multiple actions in one turn. How this is implemented is that END_TURN is one of actions. And so carrying out an action (like BUILD_SETTLEMENT, or PLAY_YEAR_OF_PLENTY) doesn't advance the turn of the current player. Not until END_TURN is called by the player. Is this what you mean? LMK! |
Beta Was this translation helpful? Give feedback.
-
Oh ok. Thanks so much. I was thinking END_TURN is always -inf. Get possible actions also gets END_TURN right? |
Beta Was this translation helpful? Give feedback.
-
Sorry for my dumbness. Can I use negamax in multi-player games instead of alphabeta prunned minimax? |
Beta Was this translation helpful? Give feedback.
Hey, first time I hear about negamax. From quick browsing in Wikipedia it seems its only for 2-player games? But it'd be good to explore it nonetheless for the 1v1 Catan variant. Give it a try! ChatGPT might be able to generate an initial version given the AlphaBeta implementation we already have. Good luck!