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

#include <omp.h>

using namespace std;

int main(int argc, char *argv[])
{
	// util::test_fast_log(100000000);
	// mcts::test_allocator(10, 2);
	// omp_set_num_threads(8);
	//game::run_test_two_players_game(game::penguin());
	mcts::run_test_mcts_two_players(game::penguin());
	//util::test_bits(200000000);
	return 0;