package planner
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- trait Analyzer[F[_]] extends AnyRef
- final case class BatchRef[K, V](batcherId: BatchKey[K, V], uniqueNodeId: UniqueBatchInstance[K, V]) extends Product with Serializable
- final case class Node(id: NodeId, name: String, cost: Double, elemCost: Double, parents: Set[NodeId], batchId: Option[BatchRef[_, _]]) extends Product with Serializable
- final case class NodeId(id: Int) extends AnyVal with Product with Serializable
- final case class NodeTree(all: List[Node]) extends Product with Serializable
- final case class OptimizedDAG(tree: NodeTree, plan: Plan) extends Product with Serializable
- trait Planner[F[_]] extends AnyRef
Value Members
- object Analyzer
- object OptimizedDAG extends Serializable
- object PlanEnumeration
- object Planner