Packages

case class EqDistMemo[State](varDists: Map[(State, RandomVar[_]), (Double, FiniteDistribution[_], Set[EquationNode])], nodeDists: Map[(State, GeneratorNode[_]), (Double, FiniteDistribution[_], Set[EquationNode])]) extends Product with Serializable

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EqDistMemo
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. 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 EqDistMemo(varDists: Map[(State, RandomVar[_]), (Double, FiniteDistribution[_], Set[EquationNode])], nodeDists: Map[(State, GeneratorNode[_]), (Double, FiniteDistribution[_], Set[EquationNode])])

Value Members

  1. def +[Y](state: State, node: GeneratorNode[Y], cutoff: Double, fd: FiniteDistribution[Y], eqs: Set[EquationNode]): EqDistMemo[State]
  2. def +[Y](state: State, rv: RandomVar[Y], cutoff: Double, fd: FiniteDistribution[Y], eqs: Set[EquationNode]): EqDistMemo[State]
  3. def ++(that: EqDistMemo[State]): EqDistMemo[State]
  4. final def addNodes(v: Vector[((State, GeneratorNode[_]), (Double, FiniteDistribution[_], Set[EquationNode]))], accum: EqDistMemo[State] = this): EqDistMemo[State]
    Annotations
    @tailrec()
  5. final def addVars(v: Vector[((State, RandomVar[_]), (Double, FiniteDistribution[_], Set[EquationNode]))], accum: EqDistMemo[State] = this): EqDistMemo[State]
    Annotations
    @tailrec()
  6. def getNodeDist[Y](state: State, node: GeneratorNode[Y], cutoff: Double): Option[(FiniteDistribution[Y], Set[EquationNode])]
  7. def getVarDist[Y](state: State, rv: RandomVar[Y], cutoff: Double): Option[(FiniteDistribution[Y], Set[EquationNode])]
  8. val nodeDists: Map[(State, GeneratorNode[_]), (Double, FiniteDistribution[_], Set[EquationNode])]
  9. def productElementNames: Iterator[String]
    Definition Classes
    Product
  10. val varDists: Map[(State, RandomVar[_]), (Double, FiniteDistribution[_], Set[EquationNode])]