diff --git a/Board.cpp b/Board.cpp index e765e82..479dfd1 100755 --- a/Board.cpp +++ b/Board.cpp @@ -89,16 +89,16 @@ void Board::changeTurns() void Board::displayBoard() { cout<<"\n\n"; - cout<<" A B C D E F G H"< Board::viewPossibleMoves() { vector output; @@ -541,7 +536,8 @@ void Board::snapshot(vector& inputVec, Board inputBoard) inputVec.push_back(inputBoard); } - + +//move this to its own file void Board::easyAI() { diff --git a/a.out b/a.out index 2e92635..20d22fc 100755 Binary files a/a.out and b/a.out differ diff --git a/test.cpp b/test.cpp index d4e940a..368e689 100755 --- a/test.cpp +++ b/test.cpp @@ -8,28 +8,22 @@ using namespace std; int main() { - cout<<"\n----------------------------"<> choice; - - if (choice == 1) cout<<"playing with AI..."< record; - b.snapshot(record,b); while (gameOver != true)