Packages

  • package root
    Definition Classes
    root
  • package scalax
    Definition Classes
    root
  • package collection
    Definition Classes
    scalax
  • package constrained

    Traits enabling to implement constraints and use constrained graphs.

    Traits enabling to implement constraints and use constrained graphs.

    Graphs may be constrained dynamically or statically.

    Dynamically constrained means that a constraint is bound to a constrained Graph instance at initialization time. The constrained Graph will then delegate all calls to the methods of ConstraintMethods and ConstraintHandlerMethods to the corresponding methods of the constraint bound to it. The immutable and mutable factories Graph in this package yield dynamically constrained graphs.

    To make use of dynamically constrained graphs you may make use of the predefined constraints or provide an own implementation of Constraint along with its companion object. To initialize a graph with one or several combined constraints just call the graph factory methods of the constraint package passing.

    Statically constrained means that the graph class directly implements the methods declared in ConstraintMethods.

    Definition Classes
    collection
  • package constraints

    Predefined constraints that may be passed to constrained Graphs.

    Predefined constraints that may be passed to constrained Graphs.

    Definition Classes
    constrained
  • class Acyclic[N, E[X] <: EdgeLikeIn[X]] extends Constraint[N, E]

    Ensures that the underlying Graph is acyclic at any time.

    Ensures that the underlying Graph is acyclic at any time.

    Definition Classes
    constraints
  • Result

class Result extends PreCheckResult

This class makes it possible to carry over nodes that are passed to a pre-check and are already contained in the graph to postAdd. Thus we can limit the number of start nodes for cycle detection in the post-check to these passed over docking nodes.

Attributes
protected
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Result
  2. PreCheckResult
  3. AnyRef
  4. Any
Implicitly
  1. by anyToNode
  2. by CollectionsHaveToParArray
  3. by EdgeAssoc
  4. by any2stringadd
  5. by StringFormat
  6. by Ensuring
  7. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Result(followUp: PreCheckFollowUp, dockingNodes: Set[Graph.NodeT])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Result to any2stringadd[Result] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Result, B)
    Implicit
    This member is added by an implicit conversion from Result to ArrowAssoc[Result] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def abort: Boolean

    Whether this.followUp equals to Abort.

    Whether this.followUp equals to Abort.

    Definition Classes
    PreCheckResult
  7. final def apply(): PreCheckFollowUp
    Definition Classes
    PreCheckResult
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. final def complete: Boolean

    Whether this.followUp equals to Complete.

    Whether this.followUp equals to Complete.

    Definition Classes
    PreCheckResult
  11. val dockingNodes: Set[Graph.NodeT]
  12. def ensuring(cond: (Result) ⇒ Boolean, msg: ⇒ Any): Result
    Implicit
    This member is added by an implicit conversion from Result to Ensuring[Result] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Result) ⇒ Boolean): Result
    Implicit
    This member is added by an implicit conversion from Result to Ensuring[Result] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): Result
    Implicit
    This member is added by an implicit conversion from Result to Ensuring[Result] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Result
    Implicit
    This member is added by an implicit conversion from Result to Ensuring[Result] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. val followUp: PreCheckFollowUp
    Definition Classes
    PreCheckResult
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Result to StringFormat[Result] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def get[N, E[X] <: EdgeLikeIn[X]](op: Constraint[N, E]): Option[PreCheckResult]
    Definition Classes
    PreCheckResult
  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def isDefined: Boolean
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  25. final def isEdge: Boolean
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  26. def isIn: Boolean
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    InParam → Param
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def isNode: Boolean
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  29. final def isOut: Boolean
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    Param
  30. val n1: Result
    Implicit
    This member is added by an implicit conversion from Result to EdgeAssoc[Result] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def noAbort: Boolean

    Whether this.followUp does not equal to Abort.

    Whether this.followUp does not equal to Abort.

    Definition Classes
    PreCheckResult
  33. final def noComplete: Boolean

    Whether this.followUp does not equal to Complete.

    Whether this.followUp does not equal to Complete.

    Definition Classes
    PreCheckResult
  34. final def noPostCheck: Boolean

    Whether this.followUp does not equal to PostCheck.

    Whether this.followUp does not equal to PostCheck.

    Definition Classes
    PreCheckResult
  35. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  37. final def postCheck: Boolean

    Whether this.followUp equals to PostCheck.

    Whether this.followUp equals to PostCheck.

    Definition Classes
    PreCheckResult
  38. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    NodeParam
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toParArray: ParArray[T]
    Implicit
    This member is added by an implicit conversion from Result to CollectionsHaveToParArray[Result, T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Result) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  41. def toString(): String
    Definition Classes
    AnyRef → Any
  42. final def tupled: (PreCheckResult, PreCheckFollowUp)

    Returns a tuple of this and this.followUp.

    Returns a tuple of this and this.followUp.

    Definition Classes
    PreCheckResult
  43. val value: Result
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Definition Classes
    OuterNode → NodeParam
  44. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  47. def ~[N >: N1](n2: N): UnDiEdge[N]
    Implicit
    This member is added by an implicit conversion from Result to EdgeAssoc[Result] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  48. def ~>[N >: N1](n2: N): DiEdge[N]
    Implicit
    This member is added by an implicit conversion from Result to EdgeAssoc[Result] performed by method EdgeAssoc in scalax.collection.GraphPredef.
    Definition Classes
    EdgeAssoc
    Annotations
    @inline()
  49. def [B](y: B): (Result, B)
    Implicit
    This member is added by an implicit conversion from Result to ArrowAssoc[Result] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def toString(): String
    Implicit
    This member is added by an implicit conversion from Result to OuterNode[Result] performed by method anyToNode in scalax.collection.GraphPredef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (result: OuterNode[Result]).toString()
    Definition Classes
    NodeParam → AnyRef → Any

Inherited from PreCheckResult

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion anyToNode from Result to OuterNode[Result]

Inherited by implicit conversion CollectionsHaveToParArray from Result to CollectionsHaveToParArray[Result, T]

Inherited by implicit conversion EdgeAssoc from Result to EdgeAssoc[Result]

Inherited by implicit conversion any2stringadd from Result to any2stringadd[Result]

Inherited by implicit conversion StringFormat from Result to StringFormat[Result]

Inherited by implicit conversion Ensuring from Result to Ensuring[Result]

Inherited by implicit conversion ArrowAssoc from Result to ArrowAssoc[Result]

Ungrouped