doc/stdenv/Dependencies: fix inference rule var name

t0 is mentioned in the conclusion so we cannot use placeholder in the premise.
This commit is contained in:
Jan Tojnar 2023-03-31 06:23:39 +02:00
parent a15dcd90be
commit 8bf1967964

View file

@ -257,7 +257,7 @@ propagated-dep(mapOffset(h0, t0, h1),
```
let mapOffset(h, t, i) = i + (if i <= 0 then h else t - 1)
dep(h0, _, A, B)
dep(h0, t0, A, B)
propagated-dep(h1, t1, B, C)
h0 + h1 in {-1, 0, 1}
h0 + t1 in {-1, 0, -1}