aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_bench.cpp
blob: b1fe4bacb5fb1ec0d7b550c5e1da707c8f7a0d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 *
 * author: Yann Herklotz
 * username: ymherklotz
 * email: ymherklotz@gmail.com
 * date created: 13/01/17
 *
 * -----------------------------------------------------------------------------
 *
 * Main file that tests the chess ai
 *
 */

#include "chess_tester.hpp"
#include "chess_piece.hpp"
#include "chess_board.hpp"
#include "board_state_parser.hpp"

#include <iostream>

using namespace std;
using namespace ymhChessAI;

int main(int argc, char **argv) {
	cout << "Program name: " << argv[0] << endl;
	cout << "Arguments: " << argc - 1 << endl;

	ChessBoard cb;
	cb.populateBoard();
	cb.printBoard();

	cout << endl << "====== Executed Successfully ======" << endl;

	return 0;
}