Skip to content
Snippets Groups Projects
Commit ac3cee05 authored by Ralf Jung's avatar Ralf Jung
Browse files

silence fewer warnings, add comment about overwriting notation

parent 48758ab8
Branches
Tags
1 merge request!49silence fewer warnings, add comment about overwriting notation
-Q theories stdpp -Q theories stdpp
-arg -w -arg -notation-overridden,-redundant-canonical-projection,-several-object-files -arg -w -arg -notation-overridden
theories/base.v theories/base.v
theories/tactics.v theories/tactics.v
theories/option.v theories/option.v
......
...@@ -380,6 +380,8 @@ Notation "1" := (Q2Qc 1) : Qc_scope. ...@@ -380,6 +380,8 @@ Notation "1" := (Q2Qc 1) : Qc_scope.
Notation "2" := (1+1) : Qc_scope. Notation "2" := (1+1) : Qc_scope.
Notation "- 1" := (Qcopp 1) : Qc_scope. Notation "- 1" := (Qcopp 1) : Qc_scope.
Notation "- 2" := (Qcopp 2) : 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.
Notation "x / y" := (x * /y) : Qc_scope. Notation "x / y" := (x * /y) : Qc_scope.
Infix "≤" := Qcle : Qc_scope. Infix "≤" := Qcle : Qc_scope.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment