Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iris-coq
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amin Timany
iris-coq
Commits
581e709f
Commit
581e709f
authored
8 years ago
by
Robbert Krebbers
Browse files
Options
Downloads
Patches
Plain Diff
Make ∖ left associative.
parent
64bb0481
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
prelude/base.v
+1
-1
1 addition, 1 deletion
prelude/base.v
program_logic/namespaces.v
+1
-1
1 addition, 1 deletion
program_logic/namespaces.v
with
2 additions
and
2 deletions
prelude/base.v
+
1
−
1
View file @
581e709f
...
...
@@ -590,7 +590,7 @@ Notation "(∩ x )" := (λ y, intersection y x) (only parsing) : C_scope.
Class
Difference
A
:=
difference
:
A
→
A
→
A
.
Instance
:
Params
(
@
difference
)
2
.
Infix
"∖"
:=
difference
(
at
level
40
)
:
C_scope
.
Infix
"∖"
:=
difference
(
at
level
40
,
left
associativity
)
:
C_scope
.
Notation
"(∖)"
:=
difference
(
only
parsing
)
:
C_scope
.
Notation
"( x ∖)"
:=
(
difference
x
)
(
only
parsing
)
:
C_scope
.
Notation
"(∖ x )"
:=
(
λ
y
,
difference
y
x
)
(
only
parsing
)
:
C_scope
.
...
...
This diff is collapsed.
Click to expand it.
program_logic/namespaces.v
+
1
−
1
View file @
581e709f
...
...
@@ -77,7 +77,7 @@ Section ndisjoint.
End
ndisjoint
.
(* The hope is that registering these will suffice to solve most goals
of the form [N1 ⊥ N2] and those of the form [
((
N1 ⊆ E ∖ N2
)
∖ ..
)
∖ Nn]. *)
of the form [N1 ⊥ N2] and those of the form [N1 ⊆ E ∖ N2 ∖ .. ∖ Nn]. *)
Hint
Resolve
ndisj_subseteq_difference
:
ndisj
.
Hint
Extern
0
(_
⊥
_)
=>
apply
ndot_ne_disjoint
;
congruence
:
ndisj
.
Hint
Resolve
ndot_preserve_disjoint_l
:
ndisj
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment