Commit 8bf19679 authored by Jan Tojnar's avatar Jan Tojnar
Browse files

doc/stdenv/Dependencies: fix inference rule var name

t0 is mentioned in the conclusion so we cannot use placeholder in the premise.
parent a15dcd90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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}