Packages

sealed trait ThenCondition[O, Y] extends GeneratorNode[Y]

compose a generator node with conditioning

O

scala type of the original output

Y

scala type of the final output

Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ThenCondition
  2. GeneratorNode
  3. GeneratorNodeFamily
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract val condition: Sort[O, Y]
  2. abstract val gen: GeneratorNode[O]
  3. abstract val output: RandomVar[Y]
    Definition Classes
    ThenConditionGeneratorNode

Concrete Value Members

  1. val outputFamily: RandomVar[Y]

    the family of random variables for which this is a generation.

    the family of random variables for which this is a generation.

    Definition Classes
    GeneratorNodeGeneratorNodeFamily
  2. def pi[D, S >: Y, T](conditionFamily: (D) => Sort[S, T], outputFamily: RandomVarFamily[::[D, HNil], T]): GeneratorNodeFamily[::[D, HNil], T]
    Definition Classes
    GeneratorNode
  3. def piFmly[Dom <: HList, S >: Y, T](conditionFamily: (Dom) => Sort[S, T], outputFamily: RandomVarFamily[Dom, T]): GeneratorNodeFamily[Dom, T]
    Definition Classes
    GeneratorNode
  4. def |[S >: Y, T](condition: Sort[S, T], output: RandomVar[T]): GeneratorNode[T]
    Definition Classes
    GeneratorNode