com.cra.figaro.algorithm.lazyfactored

LazyValues

class LazyValues extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. LazyValues
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LazyValues(universe: Universe)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply[T](element: Element[T], depth: Int): ValueSet[T]

    Returns the range of values of an element.

    Returns the range of values of an element. This method is memoized. If it has previously been called on the same element with a depth at least as great as this one, or if a previous call has resulted in a result with no Star, the previous result is reused.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  11. def expandAll(elementDepths: Set[(Element[_], Int)]): Unit

    This code ensures that if there are multiple elements that need to be expanded to a certain depth, then if one uses another, the full value set of the second is used in computing the value set of the first.

  12. def expandedDepth[T](element: Element[T]): Option[Int]

    Returns the depth to which an element has been expanded, if any.

  13. def expandedElements: Set[Element[_]]

    Returns the elements whose values have been computed.

  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  16. def getMap[T1, T2, T3, T4, T5, U](apply: Apply5[T1, T2, T3, T4, T5, U]): Map[(T1, T2, T3, T4, T5), U]

    Gets the mapping from apply arguments to values.

  17. def getMap[T1, T2, T3, T4, U](apply: Apply4[T1, T2, T3, T4, U]): Map[(T1, T2, T3, T4), U]

    Gets the mapping from apply arguments to values.

  18. def getMap[T1, T2, T3, U](apply: Apply3[T1, T2, T3, U]): Map[(T1, T2, T3), U]

    Gets the mapping from apply arguments to values.

  19. def getMap[T1, T2, U](apply: Apply2[T1, T2, U]): Map[(T1, T2), U]

    Gets the mapping from apply arguments to values.

  20. def getMap[T1, U](apply: Apply1[T1, U]): Map[T1, U]

    Gets the mapping from apply arguments to values.

  21. def getMap[T, U](chain: Chain[T, U]): Map[T, Element[U]]

    Gets the mapping from parent values to result elements associated with a chain.

  22. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  27. def storedValues[T](element: Element[T]): ValueSet[T]

    Returns the previously computed values at maximum depth, if any.

    Returns the previously computed values at maximum depth, if any. If the element has not been expanded, we return the empty value set.

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  29. def toString(): String

    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped