ludofiorio / labs_comp_inte

0 stars 0 forks source link

LAB10 Peer Review #10

Open jackcauda00 opened 6 months ago

jackcauda00 commented 6 months ago

Hello Ludovico, First of all, thank you for your peer review; I appreciate it a lot. Looking at your code, I see that you have implemented two different player strategies, the first based on RL and the second on MA. I really like the way you analyze the set of possible moves in the clever strategy, but I didn't quite grasp how you choose the move using the choice function. As for the Monte Carlo approach, everything is clear and understandable. The choice condition, which selects the move with the greater optimal_value, is written very well. In terms of the game simulations, I also appreciate that you made different game strategies compete against each other.

ludofiorio commented 6 months ago

Hello, the clever strategy looks for a winnig move than if it doesn't find one it looks for a winnig move for the opponent, again if there aren't any winnig move also for the opponent it plays a random move.