Skip to content

Commit 0128895

Browse files
committed
converted last uses of Implicit Arguments
1 parent ea7fc2d commit 0128895

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

infseq.v

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ Qed.
3030

3131
End sec_infseq.
3232

33-
Implicit Arguments Cons [T].
34-
Implicit Arguments hd [T].
35-
Implicit Arguments tl [T].
36-
Implicit Arguments recons [T].
33+
Arguments Cons [T] _ _.
34+
Arguments hd [T] _.
35+
Arguments tl [T] _.
36+
Arguments recons [T] _.
3737

3838
(* --------------------------------------------------------------------------- *)
3939
(* Temporal logic operations *)
@@ -91,22 +91,22 @@ Definition not_tl (P : infseq T -> Prop) : infseq T -> Prop :=
9191

9292
End sec_modal_op_defn.
9393

94-
Implicit Arguments now [T].
95-
Implicit Arguments next [T].
96-
Implicit Arguments consecutive [T].
97-
Implicit Arguments always [T].
98-
Implicit Arguments always1 [T].
99-
Implicit Arguments eventually [T].
100-
Implicit Arguments weak_until [T].
101-
Implicit Arguments until [T].
102-
Implicit Arguments release [T].
103-
Implicit Arguments inf_often [T].
104-
Implicit Arguments continuously [T].
105-
106-
Implicit Arguments impl_tl [T].
107-
Implicit Arguments and_tl [T].
108-
Implicit Arguments or_tl [T].
109-
Implicit Arguments not_tl [T].
94+
Arguments now [T] _ _.
95+
Arguments next [T] _ _.
96+
Arguments consecutive [T] _ _.
97+
Arguments always [T] _ _.
98+
Arguments always1 [T] _ _.
99+
Arguments eventually [T] _ _.
100+
Arguments weak_until [T] _ _ _.
101+
Arguments until [T] _ _ _.
102+
Arguments release [T] _ _ _.
103+
Arguments inf_often [T] _ _.
104+
Arguments continuously [T] _ _.
105+
106+
Arguments impl_tl [T] _ _ _.
107+
Arguments and_tl [T] _ _ _.
108+
Arguments or_tl [T] _ _ _.
109+
Arguments not_tl [T] _ _.
110110

111111
Notation "A ->_ B" := (impl_tl A B) (right associativity, at level 90).
112112
Notation "A /\_ B" := (and_tl A B) (right associativity, at level 80).

0 commit comments

Comments
 (0)