public class org.apache.commons.math3.genetics.FixedElapsedTime implements org.apache.commons.math3.genetics.StoppingCondition
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.genetics.FixedElapsedTime
  super_class: java.lang.Object
{
  private final long maxTimePeriod;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long endTime;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
        start local 1 // long maxTime
         0: .line 46
            aload 0 /* this */
            lload 1 /* maxTime */
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            invokespecial org.apache.commons.math3.genetics.FixedElapsedTime.<init>:(JLjava/util/concurrent/TimeUnit;)V
         1: .line 47
            return
        end local 1 // long maxTime
        end local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/apache/commons/math3/genetics/FixedElapsedTime;
            0    2     1  maxTime  J
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
         Name  Flags
      maxTime  final

  public void <init>(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
        start local 1 // long maxTime
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            ldc -1
            putfield org.apache.commons.math3.genetics.FixedElapsedTime.endTime:J
         2: .line 57
            lload 1 /* maxTime */
            lconst_0
            lcmp
            ifge 4
         3: .line 58
            new org.apache.commons.math3.exception.NumberIsTooSmallException
            dup
            lload 1 /* maxTime */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
            invokespecial org.apache.commons.math3.exception.NumberIsTooSmallException.<init>:(Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         4: .line 60
      StackMap locals: org.apache.commons.math3.genetics.FixedElapsedTime long java.util.concurrent.TimeUnit
      StackMap stack:
            aload 0 /* this */
            aload 3 /* unit */
            lload 1 /* maxTime */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            putfield org.apache.commons.math3.genetics.FixedElapsedTime.maxTimePeriod:J
         5: .line 61
            return
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long maxTime
        end local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lorg/apache/commons/math3/genetics/FixedElapsedTime;
            0    6     1  maxTime  J
            0    6     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
         Name  Flags
      maxTime  final
      unit     final

  public boolean isSatisfied(org.apache.commons.math3.genetics.Population);
    descriptor: (Lorg/apache/commons/math3/genetics/Population;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
        start local 1 // org.apache.commons.math3.genetics.Population population
         0: .line 71
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.FixedElapsedTime.endTime:J
            lconst_0
            lcmp
            ifge 2
         1: .line 72
            aload 0 /* this */
            invokestatic java.lang.System.nanoTime:()J
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.FixedElapsedTime.maxTimePeriod:J
            ladd
            putfield org.apache.commons.math3.genetics.FixedElapsedTime.endTime:J
         2: .line 75
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.nanoTime:()J
            aload 0 /* this */
            getfield org.apache.commons.math3.genetics.FixedElapsedTime.endTime:J
            lcmp
            iflt 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // org.apache.commons.math3.genetics.Population population
        end local 0 // org.apache.commons.math3.genetics.FixedElapsedTime this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/apache/commons/math3/genetics/FixedElapsedTime;
            0    4     1  population  Lorg/apache/commons/math3/genetics/Population;
    MethodParameters:
            Name  Flags
      population  final
}
SourceFile: "FixedElapsedTime.java"