Quantum-Chess 0.5
|
#include <iostream>
#include <fstream>
#include <complex>
#include <string>
#include <Complex_printer.hpp>
#include <CMatrix.hpp>
#include <Unitary.hpp>
#include <Qubit.hpp>
#include <Board.hpp>
#include <Piece.hpp>
#include <Move.hpp>
#include <observer_ptr.hpp>
#include <check_path.hpp>
#include <Constexpr.hpp>
#include <ComputerPlayer.hpp>
#include <ConsoleInterface.hpp>
Fonctions | |
char | piece_to_char (TypePiece piece, Color color=Color::WHITE) |
template<std::size_t N, std::size_t M> | |
char | print_piece (Board< N, M > &board, Coord const &position) |
template<std::size_t N, std::size_t M> | |
void | auto_playing (Board< N, M > &board, std::ostream &output, std::ostream &csv, int nb_moves, int search_depth) |
int | main () |
void auto_playing | ( | Board< N, M > & | board, |
std::ostream & | output, | ||
std::ostream & | csv, | ||
int | nb_moves, | ||
int | search_depth ) |
int main | ( | ) |
char piece_to_char | ( | TypePiece | piece, |
Color | color = Color::WHITE ) |