Chess Engine
C++ chess engine with movegen, bitboards, and Arduino-friendly docs
|
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include "defs.h"
#include "board/board_data.h"
#include "board/board.h"
#include "move/move_generator.h"
#include "move/make_move.h"
#include "util/notation.h"
#include "util/setup.h"
#include "util/interactive_helpers.h"
#include "test/perft.h"
Go to the source code of this file.
Functions | |
int | main () |
int main | ( | ) |
Definition at line 26 of file main.cpp.
References initializeEngine(), loadFEN(), PerftTest(), printBoardState(), and START_FEN.