Packages

case class ZipMapOpt[X1, X2, Y](f: (X1, X2) => Option[Y], input1: RandomVar[X1], input2: RandomVar[X2], output: RandomVar[Y]) extends GeneratorNode[Y] with Product with Serializable

generator node for combining using an optional binary operation, should be conditioned on output being non-trivial

X1

scala type of the first input random variable

X2

scala type of the second input random variable

Y

scala type of the output random variable

f

the optional binary operation

input1

the first input random variable

input2

the second input random variable

output

the output random variable

Linear Supertypes
Serializable, Product, Equals, GeneratorNode[Y], GeneratorNodeFamily[HNil, Y], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZipMapOpt
  2. Serializable
  3. Product
  4. Equals
  5. GeneratorNode
  6. GeneratorNodeFamily
  7. AnyRef
  8. 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

Instance Constructors

  1. new ZipMapOpt(f: (X1, X2) => Option[Y], input1: RandomVar[X1], input2: RandomVar[X2], output: RandomVar[Y])

    f

    the optional binary operation

    input1

    the first input random variable

    input2

    the second input random variable

    output

    the output random variable

Value Members

  1. val f: (X1, X2) => Option[Y]
  2. val input1: RandomVar[X1]
  3. val input2: RandomVar[X2]
  4. val inputList: Cons[X1, ::[X2, HNil]]
  5. val output: RandomVar[Y]
    Definition Classes
    ZipMapOptGeneratorNode
  6. 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
  7. def pi[D, S >: Y, T](conditionFamily: (D) => Sort[S, T], outputFamily: RandomVarFamily[::[D, HNil], T]): GeneratorNodeFamily[::[D, HNil], T]
    Definition Classes
    GeneratorNode
  8. def piFmly[Dom <: HList, S >: Y, T](conditionFamily: (Dom) => Sort[S, T], outputFamily: RandomVarFamily[Dom, T]): GeneratorNodeFamily[Dom, T]
    Definition Classes
    GeneratorNode
  9. def productElementNames: Iterator[String]
    Definition Classes
    Product
  10. def |[S >: Y, T](condition: Sort[S, T], output: RandomVar[T]): GeneratorNode[T]
    Definition Classes
    GeneratorNode