Uses of Class
ai.nettogrof.battlesnake.info.GameRuleset
-
Packages that use GameRuleset Package Description ai.nettogrof.battlesnake.info This package is all classes containing data.ai.nettogrof.battlesnake.snakes This package contains all "Snakes" classesai.nettogrof.battlesnake.treesearch Contains everything related to tree searchai.nettogrof.battlesnake.treesearch.search.constrictor Contains search and node classes related to constrictor modeai.nettogrof.battlesnake.treesearch.search.fun Contains fun search to prevent our snake to do certain thingsai.nettogrof.battlesnake.treesearch.search.royale Contains search and node classes related to royale modeai.nettogrof.battlesnake.treesearch.search.royale.wrapped ai.nettogrof.battlesnake.treesearch.search.squad Contains search and node classes related to squad modeai.nettogrof.battlesnake.treesearch.search.standard Contains search and node classes related to standard mode -
-
Uses of GameRuleset in ai.nettogrof.battlesnake.info
Constructors in ai.nettogrof.battlesnake.info with parameters of type GameRuleset Constructor Description SnakeInfo(SnakeInfo prevSnakeInfo, int moveSquare, boolean eat, boolean hazard, GameRuleset rules)
Constructor with all informations -
Uses of GameRuleset in ai.nettogrof.battlesnake.snakes
Fields in ai.nettogrof.battlesnake.snakes declared as GameRuleset Modifier and Type Field Description protected GameRuleset
AbstractSnakeAI. rules
Game rulessetMethods in ai.nettogrof.battlesnake.snakes with parameters of type GameRuleset Modifier and Type Method Description protected void
AbstractMultiThreadSnakeAI. expand(List<AbstractNode> nodelist, List<AbstractNode> expandedlist, GameRuleset rules)
Expand the base list of node until reaching CPU limitprotected void
AbstractMultiThreadSnakeAI. multiThreadtreeSearch(AbstractNode root, Long startTime, GameRuleset rules)
Execute the multiThread tree searchvoid
AbstractTreeSearchSnakeAI. singleThreadTreeSearch(AbstractNode root, Long startTime, GameRuleset rules)
Execute the single Thread tree searchprotected void
AbstractMultiThreadSnakeAI. treeSearch(AbstractNode root, Long startTime, GameRuleset rules)
Execute the tree searchprotected void
AbstractTreeSearchSnakeAI. treeSearch(AbstractNode root, Long startTime, GameRuleset rules)
Execute the tree search -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch
Fields in ai.nettogrof.battlesnake.treesearch declared as GameRuleset Modifier and Type Field Description protected GameRuleset
AbstractSearch. rules
Object containing Game Rules -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.constrictor
Constructors in ai.nettogrof.battlesnake.treesearch.search.constrictor with parameters of type GameRuleset Constructor Description ConstrictorSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search. -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.fun
Constructors in ai.nettogrof.battlesnake.treesearch.search.fun with parameters of type GameRuleset Constructor Description LimitedMoveRoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search. -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.royale
Constructors in ai.nettogrof.battlesnake.treesearch.search.royale with parameters of type GameRuleset Constructor Description AbstractRoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.RoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search. -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.royale.wrapped
Constructors in ai.nettogrof.battlesnake.treesearch.search.royale.wrapped with parameters of type GameRuleset Constructor Description WrappedRoyaleSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search. -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.squad
Constructors in ai.nettogrof.battlesnake.treesearch.search.squad with parameters of type GameRuleset Constructor Description AbstractSquadSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.SquadSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search. -
Uses of GameRuleset in ai.nettogrof.battlesnake.treesearch.search.standard
Constructors in ai.nettogrof.battlesnake.treesearch.search.standard with parameters of type GameRuleset Constructor Description MctsSearch(AbstractNode root, int width, int height, long starttime, int timeout, GameRuleset rules)
Constructor used to expand to do the tree search.
-