Class SquadSearch

  • All Implemented Interfaces:
    Runnable

    public class SquadSearch
    extends AbstractSquadSearch
    This squad search not used yet
    Version:
    Spring 2021
    Author:
    carl.lajeunesse
    • 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 node
        width - Board width
        height - 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 node
        width - Board width
        height - Board height
        starttime - starting time for the search in millisecond
        timeout - the time limit to run the search
        rules - 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 class AbstractSquadSearch
        Parameters:
        currentSnake - previous snakeInfo
        newHead - New head square
        node - Previous node
        Returns:
        new SnakeInfo