com.twitter.summingbird.graph

ExpressionDag

sealed trait ExpressionDag[N[_]] extends AnyRef

Self Type
ExpressionDag[N]
Source
ExpressionDag.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ExpressionDag
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type E[t] = Expr[t, N]

  2. type Lit[t] = Literal[t, N]

Abstract Value Members

  1. abstract def idToExp: HMap[Id, E]

    These have package visibility to test the law that for all Expr, the node they evaluate to is unique

    These have package visibility to test the law that for all Expr, the node they evaluate to is unique

    Attributes
    protected[com.twitter.summingbird.graph]
  2. abstract def nextId: Int

    Attributes
    protected
  3. abstract def nodeToLiteral: GenFunction[N, Lit]

    Attributes
    protected
  4. abstract def roots: Set[Id[_]]

    Attributes
    protected

Concrete 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(rule: Rule[N]): ExpressionDag[N]

    Apply the given rule to the given dag until the graph no longer changes.

  7. def applyOnce(rule: Rule[N]): ExpressionDag[N]

    apply the rule at the first place that satisfies it, and return from there.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def contains(node: N[_]): Boolean

  11. def ensure[T](node: N[T]): (ExpressionDag[N], Id[T])

    ensure the given literal node is present in the Dag Note: it is important that at each moment, each node has at most one id in the graph.

    ensure the given literal node is present in the Dag Note: it is important that at each moment, each node has at most one id in the graph. Put another way, for all Id[T] in the graph evaluate(id) is distinct.

    Attributes
    protected
  12. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  14. def evaluate[T](id: Id[T]): N[T]

    After applying rules to your Dag, use this method to get the original node type.

    After applying rules to your Dag, use this method to get the original node type. Only call this on an Id[T] that was generated by this dag or a parent.

  15. def evaluateOption[T](id: Id[T]): Option[N[T]]

  16. def fanOut(node: N[_]): Int

    Returns 0 if the node is absent, which is true use .

    Returns 0 if the node is absent, which is true use .contains(n) to check for containment

  17. def fanOut(id: Id[_]): Int

    Return the number of nodes that depend on the given Id, TODO we might want to cache these.

    Return the number of nodes that depend on the given Id, TODO we might want to cache these. We need to garbage collect nodes that are no longer reachable from the root

  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def find[T](node: N[T]): Option[Id[T]]

    This finds the Id[T] in the current graph that is equivalent to the given N[T]

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. def idOf[T](node: N[T]): Id[T]

    This throws if the node is missing, use find if this is not a logic error in your programming.

    This throws if the node is missing, use find if this is not a logic error in your programming. With dependent types we could possibly get this to not compile if it could throw.

  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. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  28. def toExpr[T](n: N[T]): (ExpressionDag[N], Expr[T, N])

    Attributes
    protected
  29. def toLiteral[T](n: N[T]): Literal[T, N]

    Convert a N[T] to a Literal[T, N]

  30. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped