UciEngine constructor

UciEngine(
  1. TransformerDecoder gpt
)

Implementation

UciEngine(this.gpt) {
  game = Game();

  mcts = mc.Mcts(game, gpt);
}