package prbnmcn-mcts

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a gen = Stdlib.Random.State.t -> 'a
module type S = sig ... end
module type Policy = sig ... end

Monte-Carlo Tree Search yields a policy, i.e. a way to decide which action to take at each nonterminal state.

module MCTS (X : S) : Policy with type t = X.nonterminal and type action = X.action