Uses of Class
ai.nettogrof.battlesnake.treesearch.AbstractSearch
-
Packages that use AbstractSearch Package Description 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 AbstractSearch in ai.nettogrof.battlesnake.snakes
Fields in ai.nettogrof.battlesnake.snakes with type parameters of type AbstractSearch Modifier and Type Field Description protected Constructor<? extends AbstractSearch>
AbstractTreeSearchSnakeAI. searchType
What kind of search that gonna be useMethods in ai.nettogrof.battlesnake.snakes that return types with arguments of type AbstractSearch Modifier and Type Method Description protected Constructor<? extends AbstractSearch>
AbstractSearchSnakeAI. genSearchType()
This method generate the search typeprotected Constructor<? extends AbstractSearch>
RightSnake. genSearchType()
This method generate the search typeMethods in ai.nettogrof.battlesnake.snakes with parameters of type AbstractSearch Modifier and Type Method Description protected void
AbstractMultiThreadSnakeAI. startThread(AbstractSearch search)
Start the thread search -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch Modifier and Type Class Description class
AbstractBestFirstSearch
This abstract BestFirst search, provide basic method use in any search using Best First type of searchclass
AbstractMCTS
This abstract MCTS search, provide basic method use in any search using MCTS type of search -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.constrictor
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.constrictor Modifier and Type Class Description class
ConstrictorSearch
This Constrictor search add the possibility to play Constrictor mode It start by search the smallest branch and expand it (256 times) then : 1. -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.fun
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.fun Modifier and Type Class Description class
LimitedMoveRoyaleSearch
This abstract Standard search based on RoyaleSearch provide methods to prevent snake to move in particular direction Royale mode -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.royale
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.royale Modifier and Type Class Description class
AbstractRoyaleSearch
This abstract Royale search, provide basic method use in any search in battlesnake royale modeclass
RoyaleSearch
This regular search was used during the Spring 2021 league Nessegrev-Beta snake It start by search the smallest branch and expand it (12 times) then : 1. -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.royale.wrapped
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.royale.wrapped Modifier and Type Class Description class
WrappedRoyaleSearch
This regular search was used during the Spring 2022 league Nessegrev-Beta snake for the wrapped mode It start by search the smallest branch and expand it (12 times) then : 1. -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.squad
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.squad Modifier and Type Class Description class
AbstractSquadSearch
This abstract Squad search, provide basic method use in any search in battlesnake squad modeclass
SquadSearch
This squad search not used yet -
Uses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.standard
Subclasses of AbstractSearch in ai.nettogrof.battlesnake.treesearch.search.standard Modifier and Type Class Description class
AbstractStandardSearch
This abstract Standard search, provide basic method use in any search in battlesnake standard modeclass
MctsSearch
This MCTS search was used during the Spring 2021 league Nessegrev-Gamma snake It start by search the smallest branch and expand it (500 times) then : 1.class
RegularSearch
This regular search was used during the Winter classic 2020 by my Beta and Gamma snake It start by search the smallest branch and expand it (100 times) then : 1.
-