-
Notifications
You must be signed in to change notification settings - Fork 1
/
_CoqProject
44 lines (36 loc) · 1.21 KB
/
_CoqProject
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-Q theories fip_iris
# We sometimes want to locally override notation, and there is no good way to do that with scopes.
-arg -w -arg -notation-overridden
# non-canonical projections (https://github.com/coq/coq/pull/10076) do not exist yet in 8.9.
-arg -w -arg -redundant-canonical-projection
# change_no_check does not exist yet in 8.9.
-arg -w -arg -convert_concl_no_check
# "Declare Scope" does not exist yet in 8.9.
-arg -w -arg -undeclared-scope
-arg -w -arg -cannot-define-projection
# We have ambiguous paths and so far it is not even clear what they are (https://gitlab.mpi-sws.org/iris/iris/issues/240).
-arg -w -arg -ambiguous-paths
-arg -native-compiler -arg no
# Disable notation warnings for our C-style syntax
-arg -w -arg -non-reversible-notation
-arg -w -arg -notation-bound-to-variable
# TODO: New warning which fires for our C-style variable hack
-arg -w -arg -ltac2-missing-notation-var
theories/idents.v
theories/lang.v
theories/append.v
theories/append_wand.v
theories/reverse.v
theories/tmap.v
theories/tree.v
theories/tree_bu.v
theories/tree_td.v
theories/mtr.v
theories/mtr_bu.v
theories/mtr_td.v
theories/splay.v
theories/splay_bu.v
theories/splay_td.v
theories/zip.v
theories/zip_bu.v
theories/zip_td.v