Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stdpp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maxime Dénès
stdpp
Commits
ac3cee05
Commit
ac3cee05
authored
Jan 19, 2019
by
Ralf Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
silence fewer warnings, add comment about overwriting notation
parent
48758ab8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
_CoqProject
_CoqProject
+1
-1
theories/numbers.v
theories/numbers.v
+2
-0
No files found.
_CoqProject
View file @
ac3cee05
-Q theories stdpp
-arg -w -arg -notation-overridden
,-redundant-canonical-projection,-several-object-files
-arg -w -arg -notation-overridden
theories/base.v
theories/tactics.v
theories/option.v
...
...
theories/numbers.v
View file @
ac3cee05
...
...
@@ -380,6 +380,8 @@ Notation "1" := (Q2Qc 1) : Qc_scope.
Notation
"2"
:
=
(
1
+
1
)
:
Qc_scope
.
Notation
"- 1"
:
=
(
Qcopp
1
)
:
Qc_scope
.
Notation
"- 2"
:
=
(
Qcopp
2
)
:
Qc_scope
.
(* The following two already exist in Coq's stdlib, but we overwrite them with a
different definition. *)
Notation
"x - y"
:
=
(
x
+
-
y
)
:
Qc_scope
.
Notation
"x / y"
:
=
(
x
*
/
y
)
:
Qc_scope
.
Infix
"≤"
:
=
Qcle
:
Qc_scope
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment