Class ClosingStrategies


  • public final class ClosingStrategies
    extends Object
    Collection of predefined observation table closing strategies.
    See Also:
    ClosingStrategy
    • Field Detail

      • CLOSE_RANDOM

        public static final ClosingStrategy<@Nullable Object,​@Nullable Object> CLOSE_RANDOM
        Closing strategy that randomly selects one representative row to close from each equivalence class.
      • CLOSE_FIRST

        public static final ClosingStrategy<@Nullable Object,​@Nullable Object> CLOSE_FIRST
        Closing strategy that selects the first row from each equivalence class as representative.
      • CLOSE_SHORTEST

        public static final ClosingStrategy<@Nullable Object,​@Nullable Object> CLOSE_SHORTEST
        Closing strategy that selects the shortest row of each equivalence class (more precisely: a row which's prefix has minimal length in the respective class) as representative.
      • CLOSE_LEX_MIN

        public static final ClosingStrategy<@Nullable Object,​@Nullable Object> CLOSE_LEX_MIN
        Closing strategy that selects the lexicographically minimal row (wrt. its prefix) of each equivalence class as representative.