Skip to content

Commit

Permalink
Scope Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hivert committed Jan 21, 2024
1 parent 4ed52f3 commit 9c63c85
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions theories/SymGroup/weak_order.v
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ Unset Printing Implicit Defensive.
Import GroupScope.
Import Order.Theory.

#[local] Open Scope Combi_scope.


Reserved Notation "s '<=R' t" (at level 70, t at next level).
Reserved Notation "s '<R' t" (at level 70, t at next level).
Reserved Notation "s '/\R' t" (at level 70, t at next level).
Expand Down Expand Up @@ -107,10 +110,10 @@ End Def.
Module Exports.
HB.reexport WeakOrder.

Notation "x <=R y" := (@Order.le perm_display _ (x : 'S__) y).
Notation "x <R y" := (@Order.lt perm_display _ (x : 'S__) y).
Notation "x /\R y" := (@Order.meet perm_display _ (x : 'S__) y).
Notation "x \/R y" := (@Order.join perm_display _ (x : 'S__) y).
Notation "x <=R y" := (@Order.le perm_display _ (x : 'S__) y) : Combi_scope.
Notation "x <R y" := (@Order.lt perm_display _ (x : 'S__) y) : Combi_scope.
Notation "x /\R y" := (@Order.meet perm_display _ (x : 'S__) y) : Combi_scope.
Notation "x \/R y" := (@Order.join perm_display _ (x : 'S__) y) : Combi_scope.

Section WeakOrder.

Expand Down

0 comments on commit 9c63c85

Please sign in to comment.