Class

com.eharmony.aloha.models.tree.decision

InteriorNode

Related Doc: package decision

Permalink

case class InteriorNode[-A, +B](value: B, descendants: IndexedSeq[Node[A, B]], nodeSelector: NodeSelector[A]) extends Node[A, B] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, Node[A, B], Tree[B, IndexedSeq, Node[A, B]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InteriorNode
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. Node
  7. Tree
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InteriorNode(value: B, descendants: IndexedSeq[Node[A, B]], nodeSelector: NodeSelector[A])

    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. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val descendants: IndexedSeq[Node[A, B]]

    Permalink
    Definition Classes
    InteriorNodeTree
  7. def dfs(): Iterator[(Node[A, B], Int)]

    Permalink

    Get a NON thread-safe iterator over the nodes in the tree for a DFS ordering.

    Get a NON thread-safe iterator over the nodes in the tree for a DFS ordering. Each iterator value contains the node in the tree and the depth (root has 0 depth). This iterator requires O(B * D) auxiliary space where B is the branching factor and D is the tree depth.

    returns

    a NON thread-safe iterator over the nodes in the tree for a DFS ordering.

    Definition Classes
    Tree
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  11. def getNode(v: A): Either[InteriorNodeResult[A, B], Leaf[B]]

    Permalink

    Progress down the decision tree until no further progress can be made and return the node.

    Progress down the decision tree until no further progress can be made and return the node.

    scala.Right [ com.eharmony.aloha.models.tree.decision.Leaf ] when a leaf is reached or scala.Right [InteriorNodeResult] when progress down the tree was stopped prior to reaching a leaf node. The node in the tuple is the last node in which we could make a successful choice.

    v

    the input whose data is used to branch down the decision tree.

    returns

    either a scala.Right [ com.eharmony.aloha.models.tree.decision.Leaf ] representing a leaf node in the tree or a scala.Left with a node where no further progress down the tree could be made and an optional sequence of log messages.

    Definition Classes
    InteriorNodeNode
  12. final def isInstanceOf[T0]: Boolean

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

    Permalink
    Definition Classes
    AnyRef
  14. val nodeSelector: NodeSelector[A]

    Permalink
  15. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. val value: B

    Permalink
    Definition Classes
    InteriorNodeTree
  19. final def wait(): Unit

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

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

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

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Node[A, B]

Inherited from Tree[B, IndexedSeq, Node[A, B]]

Inherited from AnyRef

Inherited from Any

Ungrouped