Class SquadSearch
- java.lang.Object
-
- ai.nettogrof.battlesnake.treesearch.AbstractSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractBestFirstSearch
-
- ai.nettogrof.battlesnake.treesearch.AbstractMCTS
-
- ai.nettogrof.battlesnake.treesearch.search.squad.AbstractSquadSearch
-
- ai.nettogrof.battlesnake.treesearch.search.squad.SquadSearch
-
- All Implemented Interfaces:
Runnable
public class SquadSearch extends AbstractSquadSearch
This squad search not used yet- Version:
- Spring 2021
- Author:
- carl.lajeunesse
-
-
Constructor Summary
Constructors Constructor Description SquadSearch()
Basic constructorSquadSearch(AbstractNode root, int width, int height)
Constructor used to expand the tree once.SquadSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SnakeInfo
createSnakeInfo(SnakeInfo currentSnake, int newHead, AbstractNode node)
Create new SnakeInfo based on the current node and the new head squarevoid
run()
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.search.squad.AbstractSquadSearch
freeSpace, freeSpaceSquad, kill, killSquad
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractMCTS
executeMCTS, getMCTSBestPath
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractBestFirstSearch
getBestChild, getbestChildValue, getBestPath, mergeList, updateFullListNode, updateListNode
-
Methods inherited from class ai.nettogrof.battlesnake.treesearch.AbstractSearch
addMove, checkHeadToHead, generateChild, generateChild, generateSnakeInfoDestination, getSmallestChild, merge, moveSnake, stopSearching
-
-
-
-
Constructor Detail
-
SquadSearch
public SquadSearch()
Basic constructor
-
SquadSearch
public SquadSearch(AbstractNode root, int width, int height)
Constructor used to expand the tree once.- Parameters:
root
- Root nodewidth
- Board widthheight
- Board height
-
SquadSearch
public SquadSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.- Parameters:
root
- Root nodewidth
- Board widthheight
- Board heightstarttime
- starting time for the search in millisecondtimeout
- the time limit to run the searchrules
- Game ruleset
-
-
Method Detail
-
run
public void run()
-
createSnakeInfo
protected SnakeInfo createSnakeInfo(SnakeInfo currentSnake, int newHead, AbstractNode node)
Description copied from class:AbstractSearch
Create new SnakeInfo based on the current node and the new head square- Overrides:
createSnakeInfo
in classAbstractSquadSearch
- Parameters:
currentSnake
- previous snakeInfonewHead
- New head squarenode
- Previous node- Returns:
- new SnakeInfo
-
-