CombinedLinkingRule

class CombinedLinkingRule<T, P : Position<P>>(val 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
constructor(subRules: List<LinkingRule<T, P>>)

Properties

Link copied to clipboard

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