17 #include <core/properties.h> 36 static constexpr
int kLines[][3] = {
50 enum class Piece : char { Empty, X, Zero };
51 enum class State { Undecided, X_Wins, Zero_Wins,
Draw };
53 static constexpr
int kSize = 9;
54 static constexpr
int kNoSquare = -1;
60 for (
auto& square : board_)
61 square = Piece::Empty;
64 Piece& operator[](
int index) {
return board_[index]; }
66 const Piece& operator[](
int index)
const {
return board_[index]; }
70 static Piece otherSide(Piece piece);
73 array<Piece, kSize> board_;
void reset(std::vector< T > &v)
Reset the values in a vector to 0.
Definition: ann_dynamic.h:32
Definition: ann_player.cpp:24