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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
|
.. _vernacularcommands:
Commands
========
.. _displaying:
Displaying
----------
.. _Print:
.. cmd:: Print {? Term } @reference {? @univ_name_list }
.. insertprodn univ_name_list univ_name_list
.. prodn::
univ_name_list ::= @%{ {* @name } %}
Displays definitions of terms, including opaque terms, for the object :n:`@reference`.
* :n:`Term` - a syntactic marker to allow printing a term
that is the same as one of the various :n:`Print` commands. For example,
:cmd:`Print All` is a different command, while :n:`Print Term All` shows
information on the object whose name is ":n:`All`".
* :n:`@univ_name_list` - locally renames the
polymorphic universes of :n:`@reference`.
The name `_` means the usual name is printed.
.. exn:: @qualid not a defined object.
:undocumented:
.. exn:: Universe instance should have length @natural.
:undocumented:
.. exn:: This object does not support universe names.
:undocumented:
.. cmd:: Print All
This command displays information about the current state of the
environment, including sections and modules.
.. cmd:: Inspect @natural
This command displays the :n:`@natural` last objects of the
current environment, including sections and modules.
.. cmd:: Print Section @qualid
Displays the objects defined since the beginning of the section named :n:`@qualid`.
.. todo: "A.B" is permitted but unnecessary for modules/sections.
should the command just take an @ident?
Query commands
--------------
Unlike other commands, :production:`query_command`\s may be prefixed with
a goal selector (:n:`@natural:`) to specify which goals it applies to.
If no selector is provided,
the command applies to the current goal. If no proof is open, then the command only applies
to accessible objects. (see Section :ref:`invocation-of-tactics`).
:cmd:`Eval` and :cmd:`Compute` are also :token:`query_command`\s, which are
described elsewhere
.. cmd:: About @reference {? @univ_name_list }
Displays information about the :n:`@reference` object, which,
if a proof is open, may be a hypothesis of the selected goal,
or an accessible theorem, axiom, etc.:
its kind (module, constant, assumption, inductive,
constructor, abbreviation, …), long name, type, implicit arguments and
argument scopes (as set in the definition of :token:`reference` or
subsequently with the :cmd:`Arguments` command). It does not print the body of definitions or proofs.
.. cmd:: Check @term
Displays the type of :n:`@term`. When called in proof mode, the
term is checked in the local context of the selected goal.
.. cmd:: Search {+ @search_query } {? {| inside | outside } {+ @qualid } }
This command can be used to filter the goal and the global context
to retrieve objects whose name or type satisfies a number of
conditions. Library files that were not loaded with :cmd:`Require`
are not considered. The :table:`Search Blacklist` table can also
be used to exclude some things from all calls to :cmd:`Search`.
The output of the command is a list of qualified identifiers and
their types. If the :flag:`Search Output Name Only` flag is on,
the types are omitted.
.. insertprodn search_query search_query
.. prodn::
search_query ::= @search_item
| - @search_query
| [ {+| {+ @search_query } } ]
Multiple :n:`@search_item`\s can be combined into a complex
:n:`@search_query`:
:n:`- @search_query`
Excludes the objects that would be filtered by
:n:`@search_query`. See :ref:`this example
<search-disambiguate-notation>`.
:n:`[ {+ @search_query } | ... | {+ @search_query } ]`
This is a disjunction of conjunctions of queries. A simple
conjunction can be expressed by having a single disjunctive
branch. For a conjunction at top-level, the surrounding
brackets are not required.
.. insertprodn search_item search_item
.. prodn::
search_item ::= {? {| head | hyp | concl | headhyp | headconcl } : } @string {? % @scope_key }
| {? {| head | hyp | concl | headhyp | headconcl } : } @one_pattern
| is : @logical_kind
Searched objects can be filtered by patterns, by the constants they
contain (identified by their name or a notation) and by their
names.
The location of the pattern or constant within a term
:n:`@one_pattern`
Search for objects whose type contains a subterm matching the
pattern :n:`@one_pattern`. Holes of the pattern are indicated by
`_` or :n:`?@ident`. If the same :n:`?@ident` occurs more than
once in the pattern, all occurrences in the subterm must be
identical. See :ref:`this example <search-pattern>`.
:n:`@string {? % @scope_key }`
- If :n:`@string` is a substring of a valid identifier and no
:n:`% @scope_key` is provided, search for objects whose name
contains :n:`@string`. See :ref:`this example
<search-part-ident>`.
- Otherwise, search for objects
whose type contains the reference that this string,
interpreted as a notation, is attached to (as described in
:n:`@reference`). See :ref:`this example <search-by-notation>`.
.. note::
To refer to a string used in a notation that is a substring of a valid identifier,
put it between single quotes or explicitly provide a scope.
See :ref:`this example <search-disambiguate-notation>`.
:n:`hyp:`
The provided pattern or reference is matched against any subterm
of an hypothesis of the type of the objects. See :ref:`this
example <search-hyp>`.
:n:`headhyp:`
The provided pattern or reference is matched against the
subterms in head position (any partial applicative subterm) of
the hypotheses of the type of the objects. See :ref:`the
previous example <search-hyp>`.
:n:`concl:`
The provided pattern or reference is matched against any subterm
of the conclusion of the type of the objects. See :ref:`this
example <search-concl>`.
:n:`headconcl:`
The provided pattern or reference is matched against the
subterms in head position (any partial applicative subterm) of
the conclusion of the type of the objects. See :ref:`the
previous example <search-concl>`.
:n:`head:`
This is simply the union between `headconcl:` and `headhyp:`.
:n:`is: @logical_kind`
.. insertprodn logical_kind logical_kind
.. prodn::
logical_kind ::= {| @thm_token | @assumption_token }
| {| Definition | Example | Context | Primitive }
| {| Coercion | Instance | Scheme | Canonical | SubClass }
| {| Field | Method }
Filters objects by the keyword that was used to define them
(`Theorem`, `Lemma`, `Axiom`, `Variable`, `Context`,
`Primitive`...) or its status (`Coercion`, `Instance`, `Scheme`,
`Canonical`, `SubClass`, Field` for record fields, `Method` for class
fields). Note that `Coercion`\s, `Canonical Structure`\s, Instance`\s and `Scheme`\s can be
defined without using those keywords. See :ref:`this example <search-by-keyword>`.
Additional clauses:
* :n:`inside {+ @qualid }` - limit the search to the specified modules
* :n:`outside {+ @qualid }` - exclude the specified modules from the search
.. exn:: Module/section @qualid not found.
There is no constant in the environment named :n:`@qualid`, where :n:`@qualid`
is in an `inside` or `outside` clause.
.. _search-pattern:
.. example:: Searching for a pattern
.. coqtop:: none reset
Require Import PeanoNat.
We can repeat meta-variables to narrow down the search. Here,
we are looking for commutativity lemmas.
.. coqtop:: all
Search (_ ?n ?m = _ ?m ?n).
.. _search-part-ident:
.. example:: Searching for part of an identifier
.. coqtop:: all reset
Search "_assoc".
.. _search-by-notation:
.. example:: Searching for a reference by notation
.. coqtop:: all reset
Search "+".
.. _search-disambiguate-notation:
.. example:: Disambiguating between part of identifier and notation
.. coqtop:: none reset
Require Import PeanoNat.
In this example, we show two ways of searching for all the
objects whose type contains `Nat.modulo` but which do not
contain the substring "mod".
.. coqtop:: all
Search "'mod'" -"mod".
Search "mod"%nat -"mod".
.. _search-hyp:
.. example:: Search in hypotheses
The following search shows the objects whose type contains
`bool` in an hypothesis as a strict subterm only:
.. coqtop:: none reset
Add Search Blacklist "internal_".
.. coqtop:: all
Search hyp:bool -headhyp:bool.
.. _search-concl:
.. example:: Search in conclusion
The following search shows the objects whose type contains `bool`
in the conclusion as a strict subterm only:
.. coqtop:: all
Search concl:bool -headconcl:bool.
.. _search-by-keyword:
.. example:: Search by keyword or status
The following search shows the definitions whose type is a `nat`
or a function which returns a `nat` and the lemmas about `+`:
.. coqtop:: all reset
Search [ is:Definition headconcl:nat | is:Lemma (_ + _) ].
The following search shows the instances whose type includes the
classes `Reflexive` or `Symmetric`:
.. coqtop:: none reset
Require Import Morphisms.
.. coqtop:: all
Search is:Instance [ Reflexive | Symmetric ].
.. cmd:: SearchPattern @one_pattern {? {| inside | outside } {+ @qualid } }
Displays the name and type of all hypotheses of the
selected goal (if any) and theorems of the current context
ending with :n:`{? forall {* @binder }, } {* P__i -> } C` that match the pattern
:n:`@one_pattern`.
See :cmd:`Search` for an explanation of the `inside`/`outside` clauses.
.. example:: :cmd:`SearchPattern` examples
.. coqtop:: in
Require Import Arith.
.. coqtop:: all
SearchPattern (_ + _ = _ + _).
SearchPattern (nat -> bool).
SearchPattern (forall l : list _, _ l l).
.. coqtop:: all
SearchPattern (?X1 + _ = _ + ?X1).
.. cmd:: SearchRewrite @one_pattern {? {| inside | outside } {+ @qualid } }
Displays the name and type of all hypotheses of the
selected goal (if any) and theorems of the current context that have the form
:n:`{? forall {* @binder }, } {* P__i -> } LHS = RHS` where :n:`@one_pattern`
matches either `LHS` or `RHS`.
See :cmd:`Search` for an explanation of the `inside`/`outside` clauses.
.. example:: :cmd:`SearchRewrite` examples
.. coqtop:: in
Require Import Arith.
.. coqtop:: all
SearchRewrite (_ + _ + _).
.. table:: Search Blacklist @string
Specifies a set of strings used to exclude lemmas from the results of :cmd:`Search`,
:cmd:`SearchPattern` and :cmd:`SearchRewrite` queries. A lemma whose
fully-qualified name contains any of the strings will be excluded from the
search results. The default blacklisted substrings are ``_subterm``, ``_subproof`` and
``Private_``.
Use the :cmd:`Add` and :cmd:`Remove` commands to update the set of
blacklisted strings.
.. flag:: Search Output Name Only
This flag restricts the output of search commands to identifier names;
turning it on causes invocations of :cmd:`Search`,
:cmd:`SearchPattern`, :cmd:`SearchRewrite` etc. to omit types from their
output, printing only identifiers.
.. _requests-to-the-environment:
Requests to the environment
-------------------------------
.. cmd:: Print Assumptions @reference
Displays all the assumptions (axioms, parameters and
variables) a theorem or definition depends on.
The message "Closed under the global context" indicates that the theorem or
definition has no dependencies.
.. cmd:: Print Opaque Dependencies @reference
Displays the assumptions and opaque constants that :n:`@reference` depends on.
.. cmd:: Print Transparent Dependencies @reference
Displays the assumptions and transparent constants that :n:`@reference` depends on.
.. cmd:: Print All Dependencies @reference
Displays all the assumptions and constants :n:`@reference` depends on.
.. cmd:: Locate @reference
.. insertprodn reference reference
.. prodn::
reference ::= @qualid
| @string {? % @scope_key }
Displays the full name of objects from Coq's various qualified namespaces such as terms,
modules and Ltac, thereby showing the module they are defined in. It also displays notation definitions.
:n:`@qualid`
refers to object names that end with :n:`@qualid`.
:n:`@string {? % @scope_key }`
refers to definitions of notations. :n:`@string`
can be a single token in the notation such as "`->`" or a pattern that matches the
notation. See :ref:`locating-notations`.
:n:`% @scope_key`, if present, limits the reference to the scope bound to the delimiting
key :n:`@scope_key`, such as, for example, :n:`%nat`. (see Section
:ref:`LocalInterpretationRulesForNotations`)
.. todo somewhere we should list all the qualified namespaces
.. cmd:: Locate Term @reference
Like :cmd:`Locate`, but limits the search to terms
.. cmd:: Locate Module @qualid
Like :cmd:`Locate`, but limits the search to modules
.. cmd:: Locate Ltac @qualid
Like :cmd:`Locate`, but limits the search to tactics
.. cmd:: Locate Library @qualid
Displays the full name, status and file system path of the module :n:`@qualid`, whether loaded or not.
.. cmd:: Locate File @string
Displays the file system path of the file ending with :n:`@string`.
Typically, :n:`@string` has a suffix such as ``.cmo`` or ``.vo`` or ``.v`` file, such as :n:`Nat.v`.
.. todo: also works for directory names such as "Data" (parent of Nat.v)
also "Data/Nat.v" works, but not a substring match
.. example:: Locate examples
.. coqtop:: all
Locate nat.
Locate Datatypes.O.
Locate Init.Datatypes.O.
Locate Coq.Init.Datatypes.O.
Locate I.Dont.Exist.
.. _printing-flags:
Printing flags
-------------------------------
.. flag:: Fast Name Printing
When turned on, Coq uses an asymptotically faster algorithm for the
generation of unambiguous names of bound variables while printing terms.
While faster, it is also less clever and results in a typically less elegant
display, e.g. it will generate more names rather than reusing certain names
across subterms. This flag is not enabled by default, because as Ltac
observes bound names, turning it on can break existing proof scripts.
.. _loading-files:
Loading files
-----------------
Coq offers the possibility of loading different parts of a whole
development stored in separate files. Their contents will be loaded as
if they were entered from the keyboard. This means that the loaded
files are text files containing sequences of commands for Coq’s
toplevel. This kind of file is called a *script* for Coq. The standard
(and default) extension of Coq’s script files is .v.
.. cmd:: Load {? Verbose } {| @string | @ident }
Loads a file. If :n:`@ident` is specified, the command loads a file
named :n:`@ident.v`, searching successively in
each of the directories specified in the *loadpath*. (see Section
:ref:`libraries-and-filesystem`)
If :n:`@string` is specified, it must specify a complete filename.
`~` and .. abbreviations are
allowed as well as shell variables. If no extension is specified, Coq
will use the default extension ``.v``.
Files loaded this way can't leave proofs open, nor can :cmd:`Load`
be used inside a proof.
We discourage the use of :cmd:`Load`; use :cmd:`Require` instead.
:cmd:`Require` loads `.vo` files that were previously
compiled from `.v` files.
:n:`Verbose` displays the Coq output for each command and tactic
in the loaded file, as if the commands and tactics were entered interactively.
.. exn:: Can’t find file @ident on loadpath.
:undocumented:
.. exn:: Load is not supported inside proofs.
:undocumented:
.. exn:: Files processed by Load cannot leave open proofs.
:undocumented:
.. _compiled-files:
Compiled files
------------------
This section describes the commands used to load compiled files (see
Chapter :ref:`thecoqcommands` for documentation on how to compile a file). A compiled
file is a particular case of a module called a *library file*.
.. cmd:: Require {? {| Import | Export } } {+ @qualid }
:name: Require; Require Import; Require Export
Loads compiled modules into the Coq environment. For each :n:`@qualid`, which has the form
:n:`{* @ident__prefix . } @ident`, the command searches for the logical name represented
by the :n:`@ident__prefix`\s and loads the compiled file :n:`@ident.vo` from the associated
filesystem directory.
The process is applied recursively to all the loaded files;
if they contain :cmd:`Require` commands, those commands are executed as well.
The compiled files must have been compiled with the same version of Coq.
The compiled files are neither replayed nor rechecked.
* :n:`Import` - additionally does an :cmd:`Import` on the loaded module, making components defined
in the module available by their short names
* :n:`Export` - additionally does an :cmd:`Export` on the loaded module, making components defined
in the module available by their short names *and* marking them to be exported by the current
module
If the required module has already been loaded, :n:`Import` and :n:`Export` make the command
equivalent to :cmd:`Import` or :cmd:`Export`.
The loadpath must contain the same mapping used to compile the file
(see Section :ref:`libraries-and-filesystem`). If
several files match, one of them is picked in an unspecified fashion.
Therefore, library authors should use a unique name for each module and
users are encouraged to use fully-qualified names
or the :cmd:`From … Require` command to load files.
.. todo common user error on dirpaths see https://github.com/coq/coq/pull/11961#discussion_r402852390
.. cmd:: From @dirpath Require {? {| Import | Export } } {+ @qualid }
:name: From … Require
Works like :cmd:`Require`, but loads, for each :n:`@qualid`,
the library whose fully-qualified name matches :n:`@dirpath.{* @ident . }@qualid`
for some :n:`{* @ident . }`. This is useful to ensure that the :n:`@qualid` library
comes from a particular package.
.. exn:: Cannot load @qualid: no physical path bound to @dirpath.
:undocumented:
.. exn:: Cannot find library foo in loadpath.
The command did not find the
file foo.vo. Either foo.v exists but is not compiled or foo.vo is in a
directory which is not in your LoadPath (see Section :ref:`libraries-and-filesystem`).
.. exn:: Compiled library @ident.vo makes inconsistent assumptions over library @qualid.
The command tried to load library file :n:`@ident`.vo that
depends on some specific version of library :n:`@qualid` which is not the
one already loaded in the current Coq session. Probably :n:`@ident.v` was
not properly recompiled with the last version of the file containing
module :token:`qualid`.
.. exn:: Bad magic number.
The file :n:`@ident.vo` was found but either it is not a
Coq compiled module, or it was compiled with an incompatible
version of Coq.
.. exn:: The file @ident.vo contains library @qualid__1 and not library @qualid__2.
The library :n:`@qualid__2` is indirectly required by a :cmd:`Require` or
:cmd:`From … Require` command. The loadpath maps :n:`@qualid__2` to :n:`@ident.vo`,
which was compiled using a loadpath that bound it to :n:`@qualid__1`. Usually
the appropriate solution is to recompile :n:`@ident.v` using the correct loadpath.
See :ref:`libraries-and-filesystem`.
.. warn:: Require inside a module is deprecated and strongly discouraged. You can Require a module at toplevel and optionally Import it inside another one.
Note that the :cmd:`Import` and :cmd:`Export` commands can be used inside modules.
.. seealso:: Chapter :ref:`thecoqcommands`
.. cmd:: Print Libraries
This command displays the list of library files loaded in the
current Coq session.
.. cmd:: Declare ML Module {+ @string }
This commands dynamically loads OCaml compiled code from
a :n:`.mllib` file.
It is used to load plugins dynamically. The
files must be accessible in the current OCaml loadpath (see
:ref:`command line option <command-line-options>` :n:`-I` and command :cmd:`Add ML Path`). The
:n:`.mllib` suffix may be omitted.
This command is reserved for plugin developers, who should provide
a .v file containing the command. Users of the plugins will then generally
load the .v file.
This command supports the :attr:`local` attribute. If present,
the listed files are not exported, even if they're outside a section.
.. exn:: File not found on loadpath: @string.
:undocumented:
.. cmd:: Print ML Modules
This prints the name of all OCaml modules loaded with :cmd:`Declare ML Module`.
To know from where these module were loaded, the user
should use the command :cmd:`Locate File`.
.. _loadpath:
Loadpath
------------
Loadpaths are preferably managed using Coq command line options (see
Section :ref:`libraries-and-filesystem`), but there are also commands
to manage them within Coq. These commands are only meant to be issued in
the toplevel, and using them in source files is discouraged.
.. cmd:: Pwd
This command displays the current working directory.
.. cmd:: Cd {? @string }
If :n:`@string` is specified, changes the current directory according to :token:`string` which
can be any valid path. Otherwise, it displays the current directory.
.. cmd:: Add LoadPath @string as @dirpath
.. insertprodn dirpath dirpath
.. prodn::
dirpath ::= {* @ident . } @ident
This command is equivalent to the command line option
:n:`-Q @string @dirpath`. It adds a mapping to the loadpath from
the logical name :n:`@dirpath` to the file system directory :n:`@string`.
* :n:`@dirpath` is a prefix of a module name. The module name hierarchy
follows the file system hierarchy. On Linux, for example, the prefix
`A.B.C` maps to the directory :n:`@string/B/C`. Avoid using spaces after a `.` in the
path because the parser will interpret that as the end of a command or tactic.
.. cmd:: Add Rec LoadPath @string as @dirpath
This command is equivalent to the command line option
:n:`-R @string @dirpath`. It adds the physical directory string and all its
subdirectories to the current Coq loadpath.
.. cmd:: Remove LoadPath @string
This command removes the path :n:`@string` from the current Coq loadpath.
.. cmd:: Print LoadPath {? @dirpath }
This command displays the current Coq loadpath. If :n:`@dirpath` is specified,
displays only the paths that extend that prefix.
.. cmd:: Add ML Path @string
Equivalent to the :ref:`command line option <command-line-options>`
:n:`-I @string`. Adds the path :n:`@string` to the current OCaml
loadpath (cf. :cmd:`Declare ML Module`). It is for
convenience, such as for use in an interactive session, and it
is not exported to compiled files. For separation of concerns with
respect to the relocability of files, we recommend using
:n:`-I @string`.
.. cmd:: Print ML Path
Displays the current OCaml loadpath, as provided by
the :ref:`command line option <command-line-options>` :n:`-I @string` or by the command :cmd:`Add
ML Path` `@string` (cf. :cmd:`Declare ML Module`).
.. _backtracking_subsection:
Backtracking
------------
The backtracking commands described in this section can only be used
interactively, they cannot be part of a Coq file loaded via
``Load`` or compiled by ``coqc``.
.. cmd:: Reset @ident
This command removes all the objects in the environment since :n:`@ident`
was introduced, including :n:`@ident`. :n:`@ident` may be the name of a defined or
declared object as well as the name of a section. One cannot reset
over the name of a module or of an object inside a module.
.. exn:: @ident: no such entry.
:undocumented:
.. cmd:: Reset Initial
Goes back to the initial state, just after the start
of the interactive session.
.. cmd:: Back {? @natural }
Undoes all the effects of the last :n:`@natural @sentence`\s. If
:n:`@natural` is not specified, the command undoes one sentence.
Sentences read from a `.v` file via a :cmd:`Load` are considered a
single sentence. While :cmd:`Back` can undo tactics and commands executed
within proof mode, once you exit proof mode, such as with :cmd:`Qed`, all
the statements executed within are thereafter considered a single sentence.
:cmd:`Back` immediately following :cmd:`Qed` gets you back to the state
just after the statement of the proof.
.. exn:: Invalid backtrack.
The user wants to undo more commands than available in the history.
.. cmd:: BackTo @natural
This command brings back the system to the state labeled :n:`@natural`,
forgetting the effect of all commands executed after this state. The
state label is an integer which grows after each successful command.
It is displayed in the prompt when in -emacs mode. Just as :cmd:`Back` (see
above), the :cmd:`BackTo` command now handles proof states. For that, it may
have to undo some extra commands and end on a state :n:`@natural′ ≤ @natural` if
necessary.
.. _quitting-and-debugging:
Quitting and debugging
--------------------------
.. cmd:: Quit
Causes Coq to exit. Valid only in coqtop.
.. cmd:: Drop
This command temporarily enters the OCaml toplevel.
It is a debug facility used by Coq’s implementers. Valid only in the
bytecode version of coqtop.
The OCaml command:
::
#use "include";;
adds the right loadpaths and loads some toplevel printers for all
abstract types of Coq- section_path, identifiers, terms, judgments, ….
You can also use the file base_include instead, that loads only the
pretty-printers for section_paths and identifiers. You can return back
to Coq with the command:
::
go();;
.. warning::
#. It only works with the bytecode version of Coq (i.e. `coqtop.byte`,
see Section `interactive-use`).
#. You must have compiled Coq from the source package and set the
environment variable COQTOP to the root of your copy of the sources
(see Section `customization-by-environment-variables`).
.. cmd:: Time @sentence
Executes :n:`@sentence` and displays the
time needed to execute it.
.. cmd:: Redirect @string @sentence
Executes :n:`@sentence`, redirecting its
output to the file ":n:`@string`.out".
.. cmd:: Timeout @natural @sentence
Executes :n:`@sentence`. If the operation
has not terminated after :n:`@natural` seconds, then it is interrupted and an error message is
displayed.
.. opt:: Default Timeout @natural
If set, each :n:`@sentence` is treated as if it was prefixed with :cmd:`Timeout` :n:`@natural`,
except for :cmd:`Timeout` commands themselves. If unset,
no timeout is applied.
.. cmd:: Fail @sentence
For debugging scripts, sometimes it is desirable to know whether a
command or a tactic fails. If :n:`@sentence` fails, then
:n:`Fail @sentence` succeeds (except for
critical errors, such as "stack overflow"), without changing the
proof state. In interactive mode, the system prints a message
confirming the failure.
.. exn:: The command has not failed!
If the given :n:`@command` succeeds, then :n:`Fail @sentence`
fails with this error message.
.. note::
:cmd:`Time`, :cmd:`Redirect`, :cmd:`Timeout` and :cmd:`Fail` are
:production:`control_command`\s. For these commands, attributes and goal
selectors, when specified, are part of the :n:`@sentence` argument, and thus come after
the control command prefix and before the inner command or tactic. For
example: `Time #[ local ] Definition foo := 0.` or `Fail Timeout 10 all: auto.`
.. _controlling-display:
Controlling display
-----------------------
.. flag:: Silent
This flag controls the normal displaying.
.. opt:: Warnings "{+, {? {| - | + } } @ident }"
This option configures the display of warnings. It is experimental, and
expects, between quotes, a comma-separated list of warning names or
categories. Adding - in front of a warning or category disables it, adding +
makes it an error. It is possible to use the special categories all and
default, the latter containing the warnings enabled by default. The flags are
interpreted from left to right, so in case of an overlap, the flags on the
right have higher priority, meaning that `A,-A` is equivalent to `-A`.
.. opt:: Debug "{+, {? - } @ident }"
Configures the display of debug messages. Each :n:`@ident` enables debug messages
for that component, while :n:`-@ident` disables messages for the component.
``all`` activates or deactivates all other components. ``backtrace`` controls printing of
error backtraces.
:cmd:`Test` `Debug` displays the list of components and their enabled/disabled state.
.. opt:: Printing Width @natural
This command sets which left-aligned part of the width of the screen is used
for display. At the time of writing this documentation, the default value
is 78.
.. opt:: Printing Depth @natural
This option controls the nesting depth of the formatter used for pretty-
printing. Beyond this depth, display of subterms is replaced by dots. At the
time of writing this documentation, the default value is 50.
.. flag:: Printing Compact Contexts
This flag controls the compact display mode for goals contexts. When on,
the printer tries to reduce the vertical size of goals contexts by putting
several variables (even if of different types) on the same line provided it
does not exceed the printing width (see :opt:`Printing Width`). At the time
of writing this documentation, it is off by default.
.. flag:: Printing Unfocused
This flag controls whether unfocused goals are displayed. Such goals are
created by focusing other goals with bullets (see :ref:`bullets` or
:ref:`curly braces <curly-braces>`). It is off by default.
.. flag:: Printing Dependent Evars Line
This flag controls the printing of the “(dependent evars: …)” information
after each tactic. The information is used by the Prooftree tool in Proof
General. (https://askra.de/software/prooftree)
.. extracted from Gallina extensions chapter
.. _printing_constructions_full:
Printing constructions in full
------------------------------
.. flag:: Printing All
Coercions, implicit arguments, the type of pattern matching, but also
notations (see :ref:`syntax-extensions-and-notation-scopes`) can obfuscate the behavior of some
tactics (typically the tactics applying to occurrences of subterms are
sensitive to the implicit arguments). Turning this flag on
deactivates all high-level printing features such as coercions,
implicit arguments, returned type of pattern matching, notations and
various syntactic sugar for pattern matching or record projections.
Otherwise said, :flag:`Printing All` includes the effects of the flags
:flag:`Printing Implicit`, :flag:`Printing Coercions`, :flag:`Printing Synth`,
:flag:`Printing Projections`, and :flag:`Printing Notations`. To reactivate
the high-level printing features, use the command ``Unset Printing All``.
.. note:: In some cases, setting :flag:`Printing All` may display terms
that are so big they become very hard to read. One technique to work around
this is use :cmd:`Undelimit Scope` and/or :cmd:`Close Scope` to turn off the
printing of notations bound to particular scope(s). This can be useful when
notations in a given scope are getting in the way of understanding
a goal, but turning off all notations with :flag:`Printing All` would make
the goal unreadable.
.. see a contrived example here: https://github.com/coq/coq/pull/11718#discussion_r415481854
.. _controlling-typing-flags:
Controlling Typing Flags
----------------------------
.. flag:: Guard Checking
This flag can be used to enable/disable the guard checking of
fixpoints. Warning: this can break the consistency of the system, use at your
own risk. Decreasing argument can still be specified: the decrease is not checked
anymore but it still affects the reduction of the term. Unchecked fixpoints are
printed by :cmd:`Print Assumptions`.
.. attr:: bypass_check(guard{? = {| yes | no } })
:name: bypass_check(guard)
Similar to :flag:`Guard Checking`, but on a per-declaration
basis. Disable guard checking locally with ``bypass_check(guard)``.
.. flag:: Positivity Checking
This flag can be used to enable/disable the positivity checking of inductive
types and the productivity checking of coinductive types. Warning: this can
break the consistency of the system, use at your own risk. Unchecked
(co)inductive types are printed by :cmd:`Print Assumptions`.
.. attr:: bypass_check(positivity{? = {| yes | no } })
:name: bypass_check(positivity)
Similar to :flag:`Positivity Checking`, but on a per-declaration basis.
Disable positivity checking locally with ``bypass_check(positivity)``.
.. flag:: Universe Checking
This flag can be used to enable/disable the checking of universes, providing a
form of "type in type". Warning: this breaks the consistency of the system, use
at your own risk. Constants relying on "type in type" are printed by
:cmd:`Print Assumptions`. It has the same effect as `-type-in-type` command line
argument (see :ref:`command-line-options`).
.. attr:: bypass_check(universes{? = {| yes | no } })
:name: bypass_check(universes)
Similar to :flag:`Universe Checking`, but on a per-declaration basis.
Disable universe checking locally with ``bypass_check(universes)``.
.. cmd:: Print Typing Flags
Print the status of the three typing flags: guard checking, positivity checking
and universe checking.
See also :flag:`Cumulative StrictProp` in the |SProp| chapter.
.. example::
.. coqtop:: all reset
Unset Guard Checking.
Print Typing Flags.
Fixpoint f (n : nat) : False
:= f n.
Fixpoint ackermann (m n : nat) {struct m} : nat :=
match m with
| 0 => S n
| S m =>
match n with
| 0 => ackermann m 1
| S n => ackermann m (ackermann (S m) n)
end
end.
Print Assumptions ackermann.
Note that the proper way to define the Ackermann function is to use
an inner fixpoint:
.. coqtop:: all reset
Fixpoint ack m :=
fix ackm n :=
match m with
| 0 => S n
| S m' =>
match n with
| 0 => ack m' 1
| S n' => ack m' (ackm n')
end
end.
.. _internal-registration-commands:
Internal registration commands
--------------------------------
Due to their internal nature, the commands that are presented in this section
are not for general use. They are meant to appear only in standard libraries and
in support libraries of plug-ins.
.. _exposing-constants-to-ocaml-libraries:
Exposing constants to OCaml libraries
```````````````````````````````````````
.. cmd:: Register @qualid__1 as @qualid__2
Makes the constant :n:`@qualid__1` accessible to OCaml libraries under
the name :n:`@qualid__2`. The constant can then be dynamically located
in OCaml code by
calling :n:`Coqlib.lib_ref "@qualid__2"`. The OCaml code doesn't need
to know where the constant is defined (what file, module, library, etc.).
As a special case, when the first segment of :n:`@qualid__2` is :g:`kernel`,
the constant is exposed to the kernel. For instance, the `Int63` module
features the following declaration:
.. coqdoc::
Register bool as kernel.ind_bool.
This makes the kernel aware of the `bool` type, which is used, for example,
to define the return type of the :g:`#int63_eq` primitive.
.. seealso:: :ref:`primitive-integers`
Inlining hints for the fast reduction machines
``````````````````````````````````````````````
.. cmd:: Register Inline @qualid
Gives a hint to the reduction machines (VM and native) that
the body of the constant :n:`@qualid` should be inlined in the generated code.
Registering primitive operations
````````````````````````````````
.. cmd:: Primitive @ident_decl {? : @term } := #@ident
Makes the primitive type or primitive operator :n:`#@ident` defined in OCaml
accessible in Coq commands and tactics.
For internal use by implementors of Coq's standard library or standard library
replacements. No space is allowed after the `#`. Invalid values give a syntax
error.
For example, the standard library files `Int63.v` and `PrimFloat.v` use :cmd:`Primitive`
to support, respectively, the features described in :ref:`primitive-integers` and
:ref:`primitive-floats`.
The types associated with an operator must be declared to the kernel before declaring operations
that use the type. Do this with :cmd:`Primitive` for primitive types and
:cmd:`Register` with the :g:`kernel` prefix for other types. For example,
in `Int63.v`, `#int63_type` must be declared before the associated operations.
.. exn:: The type @ident must be registered before this construction can be typechecked.
:undocumented:
The type must be defined with :cmd:`Primitive` command before this
:cmd:`Primitive` command (declaring an operation using the type) will succeed.
|