Uses of Class
ai.nettogrof.battlesnake.treesearch.AbstractMCTS
-
Packages that use AbstractMCTS Package Description ai.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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.constrictor
Subclasses of AbstractMCTS 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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.fun
Subclasses of AbstractMCTS 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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.royale
Subclasses of AbstractMCTS 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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.royale.wrapped
Subclasses of AbstractMCTS 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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.squad
Subclasses of AbstractMCTS 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 AbstractMCTS in ai.nettogrof.battlesnake.treesearch.search.standard
Subclasses of AbstractMCTS 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.
-