How to finish the TLAPS proof for a refinement mapping involving records?
问题 I have some difficulty in proving a refinement mapping involving records. Below are the simplified illustrating TLA specs@github (Note that this post is also in tlaplus-googlegroup, without replies yet.): SimpleVoting.tla: It maintains for each participant a maxBal which is a natural number. In IncreaseMaxBal(p, b) , maxBal[p] is increased to a larger value b . ---------------------------- MODULE SimpleVoting ---------------------------- EXTENDS Naturals --------------------------------------