--------------------------- MODULE FiniteSetsExt --------------------------- EXTENDS Integers, FiniteSets, Folds, Functions \* Replace with LOCAL INSTANCE when https://github.com/tlaplus/tlapm/issues/119 is resolved. \* LOCAL INSTANCE Integers \* LOCAL INSTANCE FiniteSets (*************************************************************************) (* Fold op over the elements of set using base as starting value. *) (* *) (* Example: *) (* FoldSet(LAMBA x,y : x + y, 0, 0 .. 10) = 55 *) (*************************************************************************) FoldSet(op(_,_), base, set) == MapThenFoldSet(op, base, LAMBDA x : x, LAMBDA s : CHOOSE x \in s : TRUE, set) (*************************************************************************) (* Calculate the sum of the elements in set. *) (* *) (* Example: *) (* SumSet(0 .. 10) = 55 *) (*************************************************************************) SumSet(set) == FoldSet(+, 0, set) (*************************************************************************) (* Calculuate the product of the elements in set. *) (* *) (* Example: *) (* ProductSet(1 .. 3) = 6 *) (*************************************************************************) ProductSet(set) == FoldSet(LAMBDA x, y: x * y, 1, set) (*************************************************************************) (* An alias for FoldSet. ReduceSet was used instead of FoldSet in *) (* earlier versions of the community modules. *) (*************************************************************************) ReduceSet(op(_, _), set, acc) == FoldSet(op, acc, set) (*************************************************************************) (* Calculate the sum of projections of the elements in a set. *) (* *) (* Example: *) (* MapThenSumSet( *) (* LAMBDA e : e.n, *) (* {[n |-> 0], [n |-> 1], [n |-> 2]} *) (* ) = 3 *) (*************************************************************************) MapThenSumSet(op(_), set) == MapThenFoldSet(+, 0, op, LAMBDA s : CHOOSE x \in s : TRUE, set) (***************************************************************************) (* Flattens a set of sets into a single set containing all elements. *) (* *) (* This is equivalent to TLA+ UNION operator. *) (* *) (* NOTE: Use UNION directly instead of this operator. FlattenSet is only *) (* kept for backward compatibility. *) (* *) (* Example: *) (* FlattenSet({{1,2}, {2,3}, {4}}) = {1,2,3,4} *) (* FlattenSet({}) = {} *) (* FlattenSet({{}}) = {} *) (***************************************************************************) FlattenSet(S) == UNION S (***************************************************************************) (* The symmetric difference of two sets. *) (* *) (* The symmetric difference of sets A and B contains elements that are *) (* in exactly one of A or B, but not in both. This is equivalent to *) (* (A ∪ B) \ (A ∩ B). *) (* *) (* Examples: *) (* SymDiff({1,2,3}, {2,3,4}) = {1,4} *) (* SymDiff({1,2}, {3,4}) = {1,2,3,4} *) (* SymDiff({1,2}, {1,2}) = {} *) (***************************************************************************) SymDiff(A, B) == (A \ B) \cup (B \ A) ----------------------------------------------------------------------------- (*************************************************************************) (* Quantify the elements in S matching the predicate (LAMDBA) P. *) (* *) (* This operator is overridden by FiniteSetsExt#quantify whose *) (* implementation does *not* enumerate the intermediate set! This is *) (* the only advantage that Quantify(...) has over Cardinality(...). *) (* *) (* Example: *) (* Quantify(1..9, LAMBDA n : n % 2 = 0) = 4 *) (*************************************************************************) Quantify(S, P(_)) == Cardinality({s \in S : P(s)}) ----------------------------------------------------------------------------- (*************************************************************************) (* A k-subset ks of a set S has Cardinality(ks) = k. The number of *) (* k-subsets of a set S with Cardinality(S) = n is given by the binomial *) (* coefficients n over k. A set S with Cardinality(S) = n has 2^n *) (* k-subsets. \A k \notin 0..Cardinality(S): kSubset(k, S) = {}. *) (* *) (* This operator is overridden by FiniteSetsExt#kSubset whose *) (* implementation, contrary to { s \in SUBSET S : Cardinality(s) = k }, *) (* only enumerates the k-subsets of S and not all subsets. *) (* *) (* Example: *) (* kSubset(2, 1..3) = {{1,2},{2,3},{3,1}} *) (*************************************************************************) kSubset(k, S) == { s \in SUBSET S : Cardinality(s) = k } ----------------------------------------------------------------------------- (***************************************************************************) (* We define Max(S) and Min(S) to be the maximum and minimum, *) (* respectively, of a finite, non-empty set S of integers. *) (***************************************************************************) Max(S) == CHOOSE x \in S : \A y \in S : x >= y Min(S) == CHOOSE x \in S : \A y \in S : x =< y ----------------------------------------------------------------------------- (***************************************************************************) (* Compute all possible choice sets from a collection of sets. *) (* *) (* Given a collection of sets, this operator equals all possible sets *) (* that can be formed by choosing exactly one element from each input set. *) (* This is related to the Cartesian product. *) (* *) (* The implementation uses choice functions: functions that map each *) (* input set to one of its elements. The range of each such function *) (* gives us one possible choice set. *) (* *) (* Examples: *) (* Choices({{1,2}, {3}}) = {{1,3}, {2,3}} *) (* Choices({{1,2}, {2,3}, {5}}) = *) (* {{1,2,5}, {1,3,5}, {2,3,5}, {2,5}} *) (* (Note: {2,5} appears because we choose 2 from both sets) *) (* Choices({}) = {{}} (empty choice from empty collection) *) (***************************************************************************) Choices(Sets) == LET ChoiceFunction(Ts) == { f \in [Ts -> UNION Ts] : \A T \in Ts : f[T] \in T } IN { Range(f) : f \in ChoiceFunction(Sets) } ----------------------------------------------------------------------------- (***************************************************************************) (* Chooses unique element from the input set matching the predicate *) (* (LAMDBA) P. *) (* *) (* Contrary to CHOOSE, fails with *) (* "CHOOSE x \\in S: P, but no element of S satisfied P: *) (* not just if P(_) holds for none of the elements in S, but also if *) (* P(_) holds for more than one element in S. *) (* *) (* Example: *) (* ChooseUnique({2, 3, 4, 5}, LAMBDA x : x % 3 = 1) = 4 *) (* *) (***************************************************************************) ChooseUnique(S, P(_)) == CHOOSE x \in S : P(x) /\ \A y \in S : P(y) => y = x =============================================================================