aboutsummaryrefslogtreecommitdiffstats
path: root/src/test_bench.cpp
blob: 474c53b76004266baa9959a8c3be063016cce301 (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
/*
 *
 * author: Yann Herklotz
 * username: ymherklotz
 * email: ymherklotz@gmail.com
 *
 * -----------------------------------------------------------------------------
 *
 * Main file that tests the chess ai
 *
 */

#include "chess_tester.hpp"
#include "chess_piece.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;

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

	return 0;
}