Skip to content

Commit

Permalink
Ad-hoc fix to recover the compatibility with coq-dev (8.20)
Browse files Browse the repository at this point in the history
  • Loading branch information
pi8027 committed Mar 19, 2024
1 parent a1691eb commit 0629f87
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions theories/ordered_qelim.v
Original file line number Diff line number Diff line change
Expand Up @@ -172,15 +172,13 @@ Declare Scope oclause_scope.
Delimit Scope oclause_scope with OCLAUSE.
Open Scope oclause_scope.

Notation "p .1" := (@eq_of_oclause _ p)
(at level 2, left associativity, format "p .1") : oclause_scope.
Notation "p .2" := (@neq_of_oclause _ p)
(at level 2, left associativity, format "p .2") : oclause_scope.
Notation "p .1" := (@eq_of_oclause _ p) (format "p .1") : oclause_scope.
Notation "p .2" := (@neq_of_oclause _ p) (format "p .2") : oclause_scope.

Notation "p .3" := (@lt_of_oclause _ p)
(at level 2, left associativity, format "p .3") : oclause_scope.
(at level 1, left associativity, format "p .3") : oclause_scope.
Notation "p .4" := (@le_of_oclause _ p)
(at level 2, left associativity, format "p .4") : oclause_scope.
(at level 1, left associativity, format "p .4") : oclause_scope.

Definition oclause_eq (T : eqType)(t1 t2 : oclause T) :=
let: Oclause eq_l1 neq_l1 lt_l1 leq_l1 := t1 in
Expand Down

0 comments on commit 0629f87

Please sign in to comment.