aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorzedarider <ymherklotz@gmail.com>2016-11-10 18:19:22 +0000
committerzedarider <ymherklotz@gmail.com>2016-11-10 18:19:22 +0000
commit95f75aa7aacf5e0e1ef11e8d200f84de44bd891f (patch)
tree5ffafeb62866e121453b82e11e402a27a6a30256 /src/main.cpp
parent375e4b989af8b4ac2c3479ea32f9324f29ce9071 (diff)
downloadChessAI-95f75aa7aacf5e0e1ef11e8d200f84de44bd891f.tar.gz
ChessAI-95f75aa7aacf5e0e1ef11e8d200f84de44bd891f.zip
finished the tester
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 81485f3..def5cf0 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -8,6 +8,7 @@
*/
#include "../include/chess_ai.hpp"
+#include "../include/chess_tester.hpp"
#include <iostream>
@@ -17,24 +18,6 @@ using namespace chess_ai;
int main(int argc, char** argv) {
(void)argc;
(void)argv;
-
- chess_board board(initial);
- board.print_board();
-
- chess_piece piece(rook, white, 5, 3);
- board.set_piece(piece);
-
- board.print_board();
-
- board.remove_piece(5, 3);
-
- board.print_board();
-
- board.move_piece(4, 6, 4, 4);
- board.move_piece(4, 1, 4, 3);
- board.move_piece(3, 6, 3, 5);
-
- board.print_board();
return 0;
}