MCTSNode<S> constructor

MCTSNode<S>(
  1. S state, {
  2. MCTSNode? parent,
  3. dynamic actionFromParent,
})

Implementation

MCTSNode(this.state, {this.parent, this.actionFromParent});