Class AbstractDecisionNode

  • Direct Known Subclasses:
    AbstractEvaluationNode

    public abstract class AbstractDecisionNode
    extends AbstractNode
    This abstract node class is the based of all node class, provide basic update Score Currently using Paranoid only, I hope to add MaxN soon
    Version:
    Fall 2021
    Author:
    carl.lajeunesse
    • Constructor Detail

      • AbstractDecisionNode

        protected AbstractDecisionNode()
        Basic constructor
      • AbstractDecisionNode

        protected AbstractDecisionNode​(List<SnakeInfo> snakes,
                                       FoodInfo food,
                                       BoardInfo boardInfo)
        Basic constructor
        Parameters:
        snakes - list of snakes, and food info
        food - food info
        boardInfo - Board Information
    • Method Detail

      • updateScoreMultiplePossibleMove

        private void updateScoreMultiplePossibleMove()
        Update score if more than 1 possible move
      • computePayoffMatrix

        private void computePayoffMatrix​(List<float[]> scores)
        Compute the payoff Matric
        Parameters:
        scores - List of score array
      • findBestIndex

        private int findBestIndex​(List<float[]> scores)
        Find the best index in the payoff matrix
        Parameters:
        scores - List of score array
        Returns:
        int the index
      • initPayoffMatrix

        private void initPayoffMatrix​(List<float[]> scores)
        Initiate the payoff matrix
        Parameters:
        scores - List of score array
      • fillBasicScore

        private void fillBasicScore​(float[] currentSnake,
                                    int currentLength,
                                    int scoreLength)
        Parameters:
        currentSnake - Current snake
        currentLength - current node length
        scoreLength - score array length
      • updateScoreSinglePossibleMove

        private void updateScoreSinglePossibleMove()
        Update score if just one possible move.
      • countSnakeAlive

        protected int countSnakeAlive()
        Count the number of snake still alive
        Returns:
        Number of snake alive