Class/Object

com.cra.figaro.algorithm.lazyfactored

LazyValues

Related Docs: object LazyValues | package lazyfactored

Permalink

class LazyValues extends AnyRef

Object for lazily computing the range of values of elements in a universe. Given a universe, you can compute the values of elements in the universe to any desired depth.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazyValues
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LazyValues(universe: Universe, paramaterized: Boolean = false)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def apply[T](element: Element[T], depth: Int, numArgSamples: Int, numTotalSamples: Int): ValueSet[T]

    Permalink
  5. def apply[T](element: Element[T], depth: Int): ValueSet[T]

    Permalink

    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.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

    Permalink

    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.

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

    Permalink

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

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

    Permalink

    Returns the elements whose values have been computed.

  13. def finalize(): Unit

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

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

    Permalink

    Gets the mapping from apply arguments to values.

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

    Permalink

    Gets the mapping from apply arguments to values.

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

    Permalink

    Gets the mapping from apply arguments to values.

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

    Permalink

    Gets the mapping from apply arguments to values.

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

    Permalink

    Gets the mapping from apply arguments to values.

  20. def getMap[U](apply: Apply[U]): Map[Any, U]

    Permalink

    Gets the mapping from apply arguments to values.

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

    Permalink

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

  22. def hashCode(): Int

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

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

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

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

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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped