Class AbstractBestFirstSearch
- java.lang.Object
-
- ai.nettogrof.battlesnake.treesearch.AbstractSearch
-
- ai.nettogrof.battlesnake.treesearch.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 Summary
Constructors Modifier Constructor Description protected
AbstractBestFirstSearch()
Sole constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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 directionAbstractNode
getBestChild(AbstractNode node)
This method find and return the best leaf nodeprotected 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 Matrixprotected List<AbstractNode>
getBestPath(AbstractNode node)
This method is use to find the next leaf node to explore using MCTS algoprivate AbstractNode
getWinnerChild(AbstractNode node)
Get the best child/winner from a nodeprotected void
mergeList(List<AbstractNode> tree, List<AbstractNode> branch)
This method just merge two lists and remove the duplicate nodeprotected void
updateFullListNode(List<AbstractNode> tree)
This method updateScore from each nodeprotected List<AbstractNode>
updateListNode(List<AbstractNode> branch)
This method get a branch, update score starting from the leaf.-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractSearch
addMove, checkHeadToHead, createSnakeInfo, freeSpace, generateChild, generateChild, generateSnakeInfoDestination, getSmallestChild, kill, merge, moveSnake, stopSearching
-
-
-
-
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 branchbranch
- 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 listdown
- float array listleft
- float array listright
- float array listnode
- 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 listdown
- float array listleft
- float array listright
- 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
-
-