Skip to content

Commit

Permalink
Merge pull request #98 from tlaplus/fix-setEuclid
Browse files Browse the repository at this point in the history
fixed bogus proof in setEuclid_test.tla
  • Loading branch information
kape1395 authored Dec 21, 2023
2 parents fe954fc + 6c7178e commit a0ae986
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/fast/regression/setEuclid_test.tla
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,10 @@ THEOREM Inv /\ Next => Inv'
(*|*) BY <3>1, <3>2
<2>3. CorrectTermination'
<3>1. Cardinality (S) = 1 => S = {CHOOSE t \in S : TRUE}
BY CardThm DEF Inv, TypeOK
<4> Cardinality (S) = 1 => \E x \in S : S = {x}
BY CardThm DEF Inv, TypeOK
<4> QED
BY Zenon
<3>2. Cardinality (S) = 1 => GCD (S) = CHOOSE t \in S : TRUE
BY <3>1, GCD2 DEF Inv, TypeOK
<3> QED
Expand Down

0 comments on commit a0ae986

Please sign in to comment.