tlaps

How to finish the TLAPS proof for a refinement mapping involving records?

别等时光非礼了梦想. 提交于 2019-12-12 23:12:43
问题 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 --------------------------------------