25 class RandomPlayer :
public Player {
27 RandomPlayer(
bool informed_choice) : informed_choice_(informed_choice) {}
32 string name()
const override;
35 float evaluateMove(
int square)
const;
38 mutable default_random_engine rnd_{ random_device{}() };
39 bool informed_choice_ =
false;
Definition: ann_player.cpp:24