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 classConstrictorSearchThis 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 classLimitedMoveRoyaleSearchThis 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 classAbstractRoyaleSearchThis abstract Royale search, provide basic method use in any search in battlesnake royale modeclassRoyaleSearchThis 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 classWrappedRoyaleSearchThis 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 classAbstractSquadSearchThis abstract Squad search, provide basic method use in any search in battlesnake squad modeclassSquadSearchThis 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 classAbstractStandardSearchThis abstract Standard search, provide basic method use in any search in battlesnake standard modeclassMctsSearchThis 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.classRegularSearchThis 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.
-