Class AbstractMCTS

    • Constructor Detail

      • AbstractMCTS

        protected AbstractMCTS()
        Sole constructor. (For invocation by subclass constructors, typically implicit.)
    • Method Detail

      • getMCTSBestPath

        protected List<AbstractNode> getMCTSBestPath​(AbstractNode node)
        This method is use to find the next leaf node to explore using MCTS algo
        Parameters:
        node - The root node
        Returns:
        List of node from the leaf to the root
      • mctsScore

        private float mctsScore​(AbstractNode parentNode,
                                AbstractNode childNode)
        Calculation of the Upper Confident Bound score.
        Parameters:
        parentNode - the parent node
        childNode - the child node which is the score is calculated
        Returns:
        float of the score.
      • fillMCTSList

        private void fillMCTSList​(gnu.trove.list.array.TFloatArrayList upward,
                                  gnu.trove.list.array.TFloatArrayList down,
                                  gnu.trove.list.array.TFloatArrayList left,
                                  gnu.trove.list.array.TFloatArrayList right,
                                  AbstractNode node)
        This method fill 4 list (one for each direction ) with the score of each node based on the move direction
        Parameters:
        upward - float array list
        down - float array list
        left - float array list
        right - float array list
        node - parent node
      • executeMCTS

        protected void executeMCTS()
        Execute the MCTS search