CombinedLinkingRule

class CombinedLinkingRule<T, P : Position<P>>(subRules: List<LinkingRule<T, P>>) : LinkingRule<T, P>

A meta-rule that combines multiple subRules. If any mandates a link, such link is created (union of all links).

Constructors

Link copied to clipboard
fun <T, P : Position<P>> CombinedLinkingRule(subRules: List<LinkingRule<T, P>>)

Functions

Link copied to clipboard
open override fun computeNeighborhood(center: Node<T>, environment: Environment<T, P>): SimpleNeighborhood<T, P>
Link copied to clipboard
open override fun isLocallyConsistent(): Boolean

Properties

Link copied to clipboard
val subRules: List<LinkingRule<T, P>>