Skip to content
Snippets Groups Projects
main.cpp 632 B
Newer Older
#include "test_connect4.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);
  mcts::test_mcts_two_players();
  // minmax::test_minmax();
  //util::test_bits(200000000);
  //game::connect4 c4;
  //  util::learning::display_file(c4, "learning_examples.txt");
  return 0;
}