Class Workflow.SPNode

java.lang.Object
jline.lang.workflow.Workflow.SPNode
Enclosing class:
Workflow

public static class Workflow.SPNode extends Object
A node of the series-parallel decomposition.
  • Field Details

    • type

      public String type
      One of leaf, serial, par, or, loop.
    • act

      public int act
      Activity index of a leaf, -1 otherwise.
    • kids

      public int[] kids
      Child node indices.
    • parent

      public int parent
      Parent node index, -1 at the root.
    • probs

      public double[] probs
      Branch probabilities of an or node.
    • count

      public double count
      Mean number of executions of a loop body.
    • alpha

      public Matrix alpha
      Cached initial vector.
    • T

      public Matrix T
      Cached subgenerator.
    • valid

      public boolean valid
      True when the cached law is up to date.
  • Constructor Details

    • SPNode

      public SPNode()