-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Isabelle proof script on the settlement algo #206
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Proofs | ||
====== | ||
|
||
Settlement.thy proves that [the settlement algorithm](https://github.com/raiden-network/spec/blob/c0e0316d09407df956b3368a4f05d98184d1e262/smart_contracts.rst#settlement-algorithm---solidity-implementation) produces numbers that make sense in terms of accounting. | ||
|
||
How to see it's a proof | ||
======================= | ||
|
||
1. get Isabelle 2018 from https://isabelle.in.tum.de/. | ||
2. open Settlement.thy in the Isabelle IDE with `$ Isabelle2018 Settlement.thy` | ||
3. for the first time, wait 10 mins while Isabelle thinks through all basic facts about integers and so. | ||
4. try removing an assumption 'valid (D1 + D2)' from lemmas. Now the sum of the deposited amounts might overflow. Isabelle IDE should indicate that the proof is broken (you'll see a red '!'). |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,160 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
theory Settlement | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
imports Main | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
begin | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
text "This file contains an analysis of the settlement algorithm in the TokenNetwork contract. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
https://raiden-network-specification.readthedocs.io/en/latest/smart_contracts.html#protocol-values-and-settlement-algorithm-analysis | ||||||||||||||||||||||||||||||||||||||||||||||||||||
The result so far confirms two things: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
lemma s1_correct: The value calculated as 'S1 = RmaxP1 - SL2' is equal to 'S1 = D1 - W1 + T2 - T1 - L1'. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
lemma s2_correct: Similarly for 'S2 = RmaxP2 - SL1' and 'S2 = D2 - W2 + T1 - T2 - L2'. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
The required conditions appear in the statements of the lemma. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
text "TODO: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
* Make sure that, you can only lose tokens if you submit an older balance proof. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
type_synonym impl_number = "int option" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition valid :: "int \<Rightarrow> bool" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where "valid a = (0 \<le> a \<and> a < 32)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question, why do you use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. question, the idea is that if the proof works for the range [0,32] , it should also work for the range [0, 2**256], correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're right. It's I'll try to change this into There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When I replace 32 with 2**256, the proof about S1 goes through but S2 fails. Investigating... There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now I need There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done changing into "2 ** 256*.
Because 0 is a |
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition chop :: "int \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"chop a = (if valid a then Some a else None)" (* has to change it to min/max*) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
fun impl_add :: "impl_number \<Rightarrow> impl_number \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"impl_add None _ = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_add _ None = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_add (Some a) (Some b) = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
chop (a + b)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
value "impl_add (Some 10) (Some 25)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
value "impl_add (Some 10) (Some 1)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
fun impl_sub :: "impl_number \<Rightarrow> impl_number \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"impl_sub None _ = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_sub _ None = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_sub (Some a) (Some b) = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
chop (a - b)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
value "impl_sub (Some 100) (Some 200)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
fun impl_min :: "impl_number \<Rightarrow> impl_number \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"impl_min None _ = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_min _ None = None" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| "impl_min (Some a) (Some b) = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
chop (min a b)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
value "impl_sub (Some 100) (Some 200)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
(*** settlement algorithm ***) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition TLmax1 :: "int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"TLmax1 T1 L1 = impl_add (Some T1) (Some L1)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition TLmax2 :: "int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"TLmax2 T2 L2 = impl_add (Some T2) (Some L2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition RmaxP1_pre :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"RmaxP1_pre T1 L1 T2 L2 D1 W1 = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
impl_sub (impl_add (impl_sub (TLmax2 T2 L2) (TLmax1 T1 L1)) (Some D1)) (Some W1)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition TAD :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"TAD D1 D2 W1 W2 = impl_sub (impl_sub (impl_add (Some D1) (Some D2)) (Some W1)) (Some W2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition RmaxP1 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These lines look terrible as ASCII texts. The Isabelle IDE automatically shows this as
I know it's a peculiar engineering choice. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
"RmaxP1 T1 L1 T2 L2 D1 W1 D2 W2 = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
impl_min (TAD D1 D2 W1 W2) (RmaxP1_pre T1 L1 T2 L2 D1 W1)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition SL2 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"SL2 T1 L1 T2 L2 D1 W1 D2 W2 = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
impl_min (RmaxP1 T1 L1 T2 L2 D1 W1 D2 W2) (Some L2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition S1 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"S1 T1 L1 T2 L2 D1 W1 D2 W2 = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
impl_sub (RmaxP1 T1 L1 T2 L2 D1 W1 D2 W2) (SL2 T1 L1 T2 L2 D1 W1 D2 W2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition RmaxP2 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"RmaxP2 T1 L1 T2 L2 D1 W1 D2 W2 = | ||||||||||||||||||||||||||||||||||||||||||||||||||||
impl_sub (TAD D1 D2 W1 W2) (RmaxP1 T1 L1 T2 L2 D1 W1 D2 W2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition SL1 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"SL1 T1 L1 T2 L2 D1 W1 D2 W2 = impl_min (RmaxP2 T1 L1 T2 L2 D1 W1 D2 W2) (Some L1)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition S2 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> impl_number" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"S2 T1 L1 T2 L2 D1 W1 D2 W2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
= impl_sub (RmaxP2 T1 L1 T2 L2 D1 W1 D2 W2) (SL1 T1 L1 T2 L2 D1 W1 D2 W2)" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition spec_s1 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"spec_s1 T1 T2 D1 W1 L1 = D1 - W1 + T2 - T1 - L1" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
definition spec_s2 :: "int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int \<Rightarrow> int" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
where | ||||||||||||||||||||||||||||||||||||||||||||||||||||
"spec_s2 T1 T2 D2 W2 L2 = D2 - W2 + T1 - T2 - L2" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
lemma s1_correct : | ||||||||||||||||||||||||||||||||||||||||||||||||||||
" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid T1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid T2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid L1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid L2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid D1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid D2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid (D1 + D2) \<Longrightarrow> (* (12) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid W1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid W2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid (T1 + L1) \<Longrightarrow> (* 10 *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid (T2 + L2) \<Longrightarrow> (* 10 *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't see how
Perhaps we should add this to the spec? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You're right. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is:
What I don't see is the individual constraints - e.g. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see I made the numbering mistake. Will fix. For individual There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now I have fixed the number Also I've added comments to individual variables: |
||||||||||||||||||||||||||||||||||||||||||||||||||||
L1 <= D1 - W1 + T2 - T1 \<Longrightarrow> (* (5) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is correct, however it doesn't seems to be the same things as I interpret the above as "a node must not accept a balance proof which would result in a negative available balance, or one larger than the total available deposit". While this rule says "a node must not have a locked amount larger than its total capacity". Anyways, should we add this to the spec? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, the following three are equivalent.
(expanding AB1)
(moving L1)
But, I'll change the Isabelle script closer to the spec. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (I'll do the same to other conditions. Changing the Isabelle script more literally loyal to the spec.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now I have something closer to the spec.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I checked the forms of the other conditions too. |
||||||||||||||||||||||||||||||||||||||||||||||||||||
D1 - W1 + T2 - T1 - L1 \<le> D1 + D2 - W1 - W2 \<Longrightarrow> (* (5) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
-(D1 - W1) <= T2 + L2 - T1 - L1 \<Longrightarrow> (* (7) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hummm, the rule The current statement is
Having both locked amounts in there would make this valid:
The last line above should not be true, however, with
I believe the above worked because of the stricter definition just above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Now I tried if Isabelle understands I guess
is the best approximation. I'll use ^ unless I hear otherwise. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [update - yes, I was missing something, disregard the following] The 3rd case seems weird:
because to get to that case, we need a state of:
Here, both available balances are There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this discussion is about changing the condition in the spec, please take it there. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated my comment - I missed the point first time I read it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, I dropped the first part and the proof still works. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And I opened an issue about changing the spec #209 . |
||||||||||||||||||||||||||||||||||||||||||||||||||||
T2 + L2 - T1 - L1 <= D2 - W2 \<Longrightarrow> (* (8) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
pirapira marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
T2 + L2 \<ge> T1 + L1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
S1 T1 L1 T2 L2 D1 W1 D2 W2 = (Some (spec_s1 T1 T2 D1 W1 L1))" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
apply(auto simp add: valid_def spec_s1_def S1_def RmaxP1_def RmaxP1_pre_def TAD_def chop_def | ||||||||||||||||||||||||||||||||||||||||||||||||||||
TLmax2_def SL2_def) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
apply(simp add: TLmax1_def chop_def valid_def ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
apply(auto) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
done | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
lemma s2_correct : | ||||||||||||||||||||||||||||||||||||||||||||||||||||
" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid T1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid T2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid L1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid L2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid D1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid D2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid W1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid W2 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid (T1 + L1) \<Longrightarrow> (* (11 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
valid (T2 + L2) \<Longrightarrow> (* (11 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
L1 <= D1 - W1 + T2 - T1 \<Longrightarrow> (* (5 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
D1 - W1 + T2 - T1 - L1 \<ge> 0 \<Longrightarrow> (* (5 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
D2 - W2 + T1 - T2 - L2 \<ge> 0 \<Longrightarrow> (* something similar to (5 R) but not documented in the spec *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
D1 - W1 + T2 - T1 - L1 \<le> D1 + D2 - W1 - W2 \<Longrightarrow> (* (5 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
D2 - W2 + T1 - T2 - L2 \<le> D1 + D2 - W1 - W2 \<Longrightarrow> (* something similar to (5 R) but not documented in the spec *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
-(D1 - W1) <= T2 + L2 - T1 - L1 \<Longrightarrow> (* (7 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
T2 + L2 - T1 - L1 <= D2 - W2 \<Longrightarrow> (* (7 R) *) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
T2 + L2 \<ge> T1 + L1 \<Longrightarrow> | ||||||||||||||||||||||||||||||||||||||||||||||||||||
S2 T1 L1 T2 L2 D1 W1 D2 W2 = (Some (spec_s2 T1 T2 D2 W2 L2))" | ||||||||||||||||||||||||||||||||||||||||||||||||||||
apply(auto simp add: valid_def spec_s2_def S2_def RmaxP2_def SL1_def TLmax1_def spec_s1_def S1_def RmaxP1_def RmaxP1_pre_def TAD_def chop_def | ||||||||||||||||||||||||||||||||||||||||||||||||||||
TLmax2_def SL2_def) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
by linarith | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With the notes that I already made in person:
s1_correct
&s2_correct
- stand only if both balance proofs arevalid
&last
; indeed, it should be always correct in this case.old
, we need to move the check down the channel lifecycle: after bothunlock
s are done. In these cases, after settlement you can frequently have a differentS1
orS2
value in the contract thanS1 = D1 - W1 + T2 - T1 - L1
, due to under/overflows. We need to make sure this difference balances out with theunlock
s.test_channel_settle_unlock_state.py::test_settlement_outcome
was made to only check the final, post-unlocks state, because this is our protocol guarantee)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have an issue about extending the Isabelle proof for older balance proofs #207 .