Class IntNtree

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private Ntree<java.lang.Integer> data  
      private long[] position  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
        IntNtree​(long[] dimensions, long[] position, int value)
      Standard constructor called by factory
      private IntNtree​(Ntree<java.lang.Integer> data, long[] position)  
    • Field Detail

      • position

        private final long[] position
      • data

        private final Ntree<java.lang.Integer> data
    • Constructor Detail

      • IntNtree

        public IntNtree​(long[] dimensions,
                        long[] position,
                        int value)
        Standard constructor called by factory
        Parameters:
        dimensions - The dimensions of the tree
        value - Uniform value of created nodes of the tree
      • IntNtree

        private IntNtree​(Ntree<java.lang.Integer> data,
                         long[] position)