#include "MoveList.h" #include class RandomAnalysis { private: hex_board theBoard; int SIZE; int moves, total; const static int MAX_TEST = 100; MoveList available; MoveList choices; occupantType side; public: RandomAnalysis(); RandomAnalysis(hex_board theBoard); RandomAnalysis(hex_board theBoard, occupantType side); void setuplists(); void fillup(); void refresh(); Move choose_move(); double value(); };