vault backup: 2023-11-10 12:32:05

This commit is contained in:
Alice 2023-11-10 12:32:06 +00:00
parent bbffe4e4c0
commit f23c0520b2

View file

@ -58,13 +58,10 @@ pred insert[n : Node] {
pred insert[n : Node] { pred insert[n : Node] {
//nodes always in the head or linked to prox //nodes always in the head or linked to prox
//always n in ( Bucket.head + Bucket.head.prox) //always n in ( Bucket.head + Bucket.head.prox)
always{ always n.key.hash not in Hash {
n in Bucket.head
} }
historically n.key.hash not in Hash
lone b:Bucket | b.head = none implies b.head' = n
} }