public class org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
  super_class: java.lang.Object
{
  private T element;
    descriptor: Ljava/lang/Comparable;
    flags: (0x0002) ACC_PRIVATE
    Signature: TT;

  private org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node left;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  private org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node right;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  private org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node parent;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  private org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew skew;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;

  final org.apache.commons.math3.geometry.partitioning.utilities.AVLTree this$0;
    descriptor: Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private static volatile int[] $SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  void <init>(T, org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node);
    descriptor: (Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;Ljava/lang/Comparable;Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
        start local 2 // java.lang.Comparable element
        start local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node parent
         0: .line 247
            aload 0 /* this */
            aload 1
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.this$0:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 248
            aload 0 /* this */
            aload 2 /* element */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         2: .line 249
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         3: .line 250
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         4: .line 251
            aload 0 /* this */
            aload 3 /* parent */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         5: .line 252
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         6: .line 253
            return
        end local 3 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node parent
        end local 2 // java.lang.Comparable element
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            0    7     2  element  TT;
            0    7     3   parent  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: (TT;Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;)V
    MethodParameters:
         Name  Flags
      this$0   final
      element  final
      parent   final

  public T getElement();
    descriptor: ()Ljava/lang/Comparable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 259
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    Signature: ()TT;

  int size();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 266
            iconst_1
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack: int
         1: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.size:()I
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack: int int
         2: iadd
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack: int
         3: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.size:()I
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack: int int
         4: iadd
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;

  org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getSmallest();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 276
            aload 0 /* this */
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         1: .line 277
            goto 3
         2: .line 278
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
         3: .line 277
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 2
         4: .line 280
            aload 1 /* node */
            areturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            1    5     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getLargest();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 290
            aload 0 /* this */
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         1: .line 291
            goto 3
         2: .line 292
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
         3: .line 291
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 2
         4: .line 294
            aload 1 /* node */
            areturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            1    5     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getPrevious();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 304
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 4
         1: .line 305
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getLargest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         2: .line 306
            aload 1 /* node */
            ifnull 4
         3: .line 307
            aload 1 /* node */
            areturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         4: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         5: goto 9
         6: .line 312
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 1 /* node */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            if_acmpeq 8
         7: .line 313
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            areturn
         8: .line 311
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
      StackMap locals:
      StackMap stack:
         9: aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 6
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        10: .line 317
            aconst_null
            areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            2    4     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
            5   10     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  public org.apache.commons.math3.geometry.partitioning.utilities.AVLTree<T>.Node getNext();
    descriptor: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 329
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 4
         1: .line 330
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getSmallest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         2: .line 331
            aload 1 /* node */
            ifnull 4
         3: .line 332
            aload 1 /* node */
            areturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         4: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         5: goto 9
         6: .line 337
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 1 /* node */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            if_acmpeq 8
         7: .line 338
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            areturn
         8: .line 336
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
      StackMap locals:
      StackMap stack:
         9: aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 6
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        10: .line 342
            aconst_null
            areturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            2    4     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
            5   10     1  node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
    Signature: ()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  boolean insert();
    descriptor: (Ljava/lang/Comparable;)Z
    flags: (0x0000) 
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
        start local 1 // java.lang.Comparable newElement
         0: .line 351
            aload 1 /* newElement */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            invokeinterface java.lang.Comparable.compareTo:(Ljava/lang/Object;)I
            ifge 7
         1: .line 353
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 4
         2: .line 354
            aload 0 /* this */
            new org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.this$0:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;
            aload 1 /* newElement */
            aload 0 /* this */
            invokespecial org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.<init>:(Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;Ljava/lang/Comparable;Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;)V
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         3: .line 355
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceLeftGrown:()Z
            ireturn
         4: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 1 /* newElement */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.insert:(Ljava/lang/Comparable;)Z
            ifeq 5
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceLeftGrown:()Z
            goto 6
      StackMap locals:
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ireturn
         7: .line 361
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 10
         8: .line 362
            aload 0 /* this */
            new org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.this$0:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;
            aload 1 /* newElement */
            aload 0 /* this */
            invokespecial org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.<init>:(Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;Ljava/lang/Comparable;Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;)V
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         9: .line 363
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceRightGrown:()Z
            ireturn
        10: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 1 /* newElement */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.insert:(Ljava/lang/Comparable;)Z
            ifeq 11
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceRightGrown:()Z
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: ireturn
        end local 1 // java.lang.Comparable newElement
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   13     0        this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            0   13     1  newElement  TT;
    Signature: (TT;)Z
    MethodParameters:
            Name  Flags
      newElement  final

  public void delete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 372
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 4
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 4
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 4
         1: .line 374
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         2: .line 375
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.this$0:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree;
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree.top:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         3: .line 376
            goto 38
         4: .line 381
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 12
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 12
         5: .line 382
            aload 0 /* this */
            astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
         6: .line 383
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         7: .line 384
            aload 1 /* node */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            if_acmpne 8
            iconst_1
            goto 9
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 3 /* leftShrunk */
        start local 3 // boolean leftShrunk
        10: .line 385
            aconst_null
            astore 2 /* child */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node child
        11: .line 386
            goto 22
        end local 3 // boolean leftShrunk
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node child
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        12: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 13
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getLargest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            goto 14
      StackMap locals:
      StackMap stack:
        13: aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.getSmallest:()Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
      StackMap locals:
      StackMap stack: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
        14: astore 1 /* node */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        15: .line 388
            aload 0 /* this */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
        16: .line 389
            aload 1 /* node */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            if_acmpne 17
            iconst_1
            goto 18
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
        17: iconst_0
      StackMap locals:
      StackMap stack: int
        18: istore 3 /* leftShrunk */
        start local 3 // boolean leftShrunk
        19: .line 390
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 20
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            goto 21
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node top int
      StackMap stack:
        20: aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
      StackMap locals:
      StackMap stack: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
        21: astore 2 /* child */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node child
        22: .line 393
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node int
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
        23: .line 394
            iload 3 /* leftShrunk */
            ifeq 26
        24: .line 395
            aload 1 /* node */
            aload 2 /* child */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        25: .line 396
            goto 27
        26: .line 397
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            aload 2 /* child */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        27: .line 399
      StackMap locals:
      StackMap stack:
            aload 2 /* child */
            ifnull 36
        28: .line 400
            aload 2 /* child */
            aload 1 /* node */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        29: .line 403
            goto 36
        30: .line 404
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnonnull 32
        31: .line 405
            return
        32: .line 407
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            if_acmpne 33
            iconst_1
            goto 34
      StackMap locals:
      StackMap stack:
        33: iconst_0
      StackMap locals:
      StackMap stack: int
        34: istore 3 /* leftShrunk */
        35: .line 408
            aload 1 /* node */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 1 /* node */
        36: .line 403
      StackMap locals:
      StackMap stack:
            iload 3 /* leftShrunk */
            ifeq 37
            aload 1 /* node */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceLeftShrunk:()Z
            ifne 30
            goto 38
      StackMap locals:
      StackMap stack:
        37: aload 1 /* node */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rebalanceRightShrunk:()Z
            ifne 30
        end local 3 // boolean leftShrunk
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node child
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node node
        38: .line 412
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   39     0        this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            6   12     1        node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
           15   38     1        node  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
           11   12     2       child  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
           22   38     2       child  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;
           10   12     3  leftShrunk  Z
           19   38     3  leftShrunk  Z

  private boolean rebalanceLeftGrown();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 418
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 1
                    2: 20
              default: 22
          }
         1: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 6
         2: .line 421
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
         3: .line 422
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         4: .line 423
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         5: .line 424
            goto 19
         6: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            astore 1 /* s */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
         7: .line 426
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
         8: .line 427
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
         9: .line 428
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 1 /* s */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 10
                    2: 13
              default: 16
          }
        10: .line 430
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        11: .line 431
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        12: .line 432
            goto 18
        13: .line 434
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        14: .line 435
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        15: .line 436
            goto 18
        16: .line 438
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        17: .line 439
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        18: .line 441
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        19: .line 443
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        20: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        21: .line 446
            iconst_0
            ireturn
        22: .line 448
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        23: .line 449
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            7   19     1     s  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;

  private boolean rebalanceRightGrown();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 457
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 1
                    2: 3
              default: 22
          }
         1: .line 459
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         2: .line 460
            iconst_0
            ireturn
         3: .line 462
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 8
         4: .line 463
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
         5: .line 464
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         6: .line 465
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         7: .line 466
            goto 21
         8: .line 467
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            astore 1 /* s */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
         9: .line 468
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
        10: .line 469
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
        11: .line 470
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 1 /* s */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 12
                    2: 15
              default: 18
          }
        12: .line 472
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        13: .line 473
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        14: .line 474
            goto 20
        15: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        16: .line 477
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        17: .line 478
            goto 20
        18: .line 480
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        19: .line 481
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        20: .line 483
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        21: .line 485
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        22: .line 487
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        23: .line 488
            iconst_1
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   24     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            9   21     1     s  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;

  private boolean rebalanceLeftShrunk();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 496
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 1
                    2: 3
              default: 27
          }
         1: .line 498
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         2: .line 499
            iconst_1
            ireturn
         3: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 8
         4: .line 502
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
         5: .line 503
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         6: .line 504
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         7: .line 505
            iconst_1
            ireturn
         8: .line 506
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 13
         9: .line 507
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
        10: .line 508
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        11: .line 509
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        12: .line 510
            iconst_0
            ireturn
        13: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            astore 1 /* s */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        14: .line 513
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
        15: .line 514
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
        16: .line 515
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 1 /* s */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 17
                    2: 20
              default: 23
          }
        17: .line 517
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        18: .line 518
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        19: .line 519
            goto 25
        20: .line 521
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        21: .line 522
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        22: .line 523
            goto 25
        23: .line 525
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        24: .line 526
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        25: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        26: .line 529
            iconst_1
            ireturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        27: .line 532
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        28: .line 533
            iconst_0
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   29     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
           14   27     1     s  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;

  private boolean rebalanceRightShrunk();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 541
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 3
                    2: 1
              default: 27
          }
         1: .line 543
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         2: .line 544
            iconst_1
            ireturn
         3: .line 546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 8
         4: .line 547
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
         5: .line 548
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         6: .line 549
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
         7: .line 550
            iconst_1
            ireturn
         8: .line 551
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            if_acmpne 13
         9: .line 552
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
        10: .line 553
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        11: .line 554
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        12: .line 555
            iconst_0
            ireturn
        13: .line 557
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            astore 1 /* s */
        start local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        14: .line 558
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCCW:()V
        15: .line 559
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.rotateCW:()V
        16: .line 560
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:()[I
            aload 1 /* s */
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 17
                    2: 20
              default: 23
          }
        17: .line 562
      StackMap locals: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        18: .line 563
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        19: .line 564
            goto 25
        20: .line 566
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        21: .line 567
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        22: .line 568
            goto 25
        23: .line 570
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        24: .line 571
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        25: .line 573
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        26: .line 574
            iconst_1
            ireturn
        end local 1 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew s
        27: .line 577
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.skew:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
        28: .line 578
            iconst_0
            ireturn
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   29     0  this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
           14   27     1     s  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;

  private void rotateCW();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 588
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            astore 1 /* tmpElt */
        start local 1 // java.lang.Comparable tmpElt
         1: .line 589
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         2: .line 590
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 1 /* tmpElt */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         3: .line 592
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 2 /* tmpNode */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node tmpNode
         4: .line 593
            aload 0 /* this */
            aload 2 /* tmpNode */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         5: .line 594
            aload 2 /* tmpNode */
            aload 2 /* tmpNode */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         6: .line 595
            aload 2 /* tmpNode */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         7: .line 596
            aload 0 /* this */
            aload 2 /* tmpNode */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         8: .line 598
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 10
         9: .line 599
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 0 /* this */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        10: .line 601
      StackMap locals: java.lang.Comparable org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 12
        11: .line 602
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        12: .line 605
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node tmpNode
        end local 1 // java.lang.Comparable tmpElt
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            1   13     1   tmpElt  TT;
            4   13     2  tmpNode  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  private void rotateCCW();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
         0: .line 613
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            astore 1 /* tmpElt */
        start local 1 // java.lang.Comparable tmpElt
         1: .line 614
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         2: .line 615
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 1 /* tmpElt */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.element:Ljava/lang/Comparable;
         3: .line 617
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            astore 2 /* tmpNode */
        start local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node tmpNode
         4: .line 618
            aload 0 /* this */
            aload 2 /* tmpNode */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         5: .line 619
            aload 2 /* tmpNode */
            aload 2 /* tmpNode */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         6: .line 620
            aload 2 /* tmpNode */
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         7: .line 621
            aload 0 /* this */
            aload 2 /* tmpNode */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
         8: .line 623
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 10
         9: .line 624
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.right:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 0 /* this */
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        10: .line 626
      StackMap locals: java.lang.Comparable org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            ifnull 12
        11: .line 627
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            aload 0 /* this */
            getfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.left:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            putfield org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.parent:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
        12: .line 630
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node tmpNode
        end local 1 // java.lang.Comparable tmpElt
        end local 0 // org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Node;
            1   13     1   tmpElt  TT;
            4   13     2  tmpNode  Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree<TT;>.Node;

  static int[] $SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 226
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.values:()[Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.BALANCED:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.LEFT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iconst_1
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.RIGHT_HIGH:Lorg/apache/commons/math3/geometry/partitioning/utilities/AVLTree$Skew;
            invokevirtual org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            dup
            putstatic org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node.$SWITCH_TABLE$org$apache$commons$math3$geometry$partitioning$utilities$AVLTree$Skew:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
}
SourceFile: "AVLTree.java"
NestHost: org.apache.commons.math3.geometry.partitioning.utilities.AVLTree
InnerClasses:
  public Node = org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Node of org.apache.commons.math3.geometry.partitioning.utilities.AVLTree
  private final Skew = org.apache.commons.math3.geometry.partitioning.utilities.AVLTree$Skew of org.apache.commons.math3.geometry.partitioning.utilities.AVLTree