Skip to content

Commit f6a7e00

Browse files
committed
is this the new syntax?
1 parent f87573d commit f6a7e00

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/coalgebras/itreeTauScript.sml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1166,11 +1166,11 @@ QED
11661166
(* coinduction upto stripping finite taus, useful for iter and friends *)
11671167
Inductive after_taus:
11681168
[~rel:]
1169-
(R x y ==> after_taus R x y) /\
1169+
(R x y ==> after_taus R x y)
11701170
[~tauL:]
1171-
(after_taus R x y ==> after_taus R (Tau x) y) /\
1171+
(after_taus R x y ==> after_taus R (Tau x) y)
11721172
[~tauR:]
1173-
(after_taus R x y ==> after_taus R x (Tau y)) /\
1173+
(after_taus R x y ==> after_taus R x (Tau y))
11741174
[~vis:]
11751175
((!r. after_taus R (k r) (k' r)) ==> after_taus R (Vis e k) (Vis e k'))
11761176
End

0 commit comments

Comments
 (0)