Class PfqnCycletResult

java.lang.Object
jline.api.pfqn.nc.PfqnCycletResult

public class PfqnCycletResult extends Object
Density, distribution and moments of a passage time along an overtake-free path.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double[]
    Density on the requested grid.
    final double[]
    Cumulative distribution on the requested grid.
    final double
    Log of the network normalizing constant at population N-1.
    final List<String>
    Which route ran for each path: "exact" (Theorem 2) or "lt" (Theorem 1).
    final double[]
    The first nmom moments.
  • Constructor Summary

    Constructors
    Constructor
    Description
    PfqnCycletResult(double[] f, double[] F, double[] mom, List<String> method, double lG)
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • f

      public final double[] f
      Density on the requested grid.
    • F

      public final double[] F
      Cumulative distribution on the requested grid.
    • mom

      public final double[] mom
      The first nmom moments.
    • method

      public final List<String> method
      Which route ran for each path: "exact" (Theorem 2) or "lt" (Theorem 1).
    • lG

      public final double lG
      Log of the network normalizing constant at population N-1.
  • Constructor Details

    • PfqnCycletResult

      public PfqnCycletResult(double[] f, double[] F, double[] mom, List<String> method, double lG)