package collection
- Alphabetic
- By Inheritance
- collection
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Package Members
- 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 constrainedGraph
will then delegate all calls to the methods ofConstraintMethods
andConstraintHandlerMethods
to the corresponding methods of the constraint bound to it. The immutable and mutable factoriesGraph
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 theconstraint
package passing.Statically constrained means that the graph class directly implements the methods declared in
ConstraintMethods
.