Class AbstractBestFirstSearch

  • All Implemented Interfaces:
    Runnable
    Direct Known Subclasses:
    AbstractMCTS

    public abstract class AbstractBestFirstSearch
    extends AbstractSearch
    This abstract BestFirst search, provide basic method use in any search using Best First type of search
    Version:
    Spring 2021
    Author:
    carl.lajeunesse
    • Constructor Detail

      • AbstractBestFirstSearch

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

      • mergeList

        protected void mergeList​(List<AbstractNode> tree,
                                 List<AbstractNode> branch)
        This method just merge two lists and remove the duplicate node
        Parameters:
        tree - List of node from root to branch
        branch - List of node from branch to leaf
      • updateFullListNode

        protected void updateFullListNode​(List<AbstractNode> tree)
        This method updateScore from each node
        Parameters:
        tree - List of node to update
      • updateListNode

        protected List<AbstractNode> updateListNode​(List<AbstractNode> branch)
        This method get a branch, update score starting from the leaf. if a node score have changed, remove the node from the list.
        Parameters:
        branch - List of node of that branch
        Returns:
        list of node that score doesn't have changed.
      • getBestPath

        protected List<AbstractNode> getBestPath​(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
      • getWinnerChild

        private AbstractNode getWinnerChild​(AbstractNode node)
        Get the best child/winner from a node
        Parameters:
        node - the parent node
        Returns:
        the winner/best child
      • fillList

        private void fillList​(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
      • getbestChildValue

        protected float getbestChildValue​(gnu.trove.list.array.TFloatArrayList upward,
                                          gnu.trove.list.array.TFloatArrayList down,
                                          gnu.trove.list.array.TFloatArrayList left,
                                          gnu.trove.list.array.TFloatArrayList right)
        This method return the scoreRatio of the best choice based on payoff Matrix
        Parameters:
        upward - float array list
        down - float array list
        left - float array list
        right - float array list
        Returns:
        score float
      • getBestChild

        public AbstractNode getBestChild​(AbstractNode node)
        This method find and return the best leaf node
        Parameters:
        node - Parent node
        Returns:
        AbstractNode best leaf node