Skip to content
Snippets Groups Projects
main.cpp 1023 B
Newer Older
#include "test_connect4.hpp"
#include "connect4.hpp"
#include "morpion.hpp"
Gaste Adrien's avatar
Gaste Adrien committed
#include "penguin.hpp"
#include "test_two_players_game.hpp"
#include "test_monte_carlo.hpp"
#include "test_fast_log.hpp"
#include "test_allocator.hpp"
#include "test_mcts_two_players.hpp"
#include "test_minmax.hpp"
#include "test_bits.hpp"
#include "learning.hpp"

#include <omp.h>

using namespace std;

int main(int argc, char *argv[])
{
	// game::test_connect4();
	// util::test_fast_log(100000000);
	// mcts::test_allocator(10, 2);
	// omp_set_num_threads(8);
	//  game::run_test_two_players_game(game::connect4());
	//mcts::run_test_mcts_two_players(game::connect4());
	
	//game::run_test_two_players_game(game::morpion());
Gaste Adrien's avatar
Gaste Adrien committed
	//mcts::run_test_mcts_two_players(game::morpion());
	
	game::run_test_two_players_game(game::penguin());
	//mcts::run_test_mcts_two_players(game::penguin());

	// minmax::test_minmax();
	//util::test_bits(200000000);
	//game::connect4 c4;
	//  util::learning::display_file(c4, "learning_examples.txt");
	return 0;