2 <!-- ============ Commands ====================== -->
3 <chapter id="sec_commands">
4 <title>Other commands</title>
5 <sect1 id="command_alias">
7 <para><userinput>alias id "s" = "def"</userinput></para>
8 <para><userinput>alias symbol "s" (instance n) = "def"</userinput></para>
9 <para><userinput>alias num (instance n) = "def"</userinput></para>
13 <term>Synopsis:</term>
15 <para><emphasis role="bold">alias</emphasis>
16 [<emphasis role="bold">id</emphasis> &qstring; <emphasis role="bold">=</emphasis> &qstring;
17 | <emphasis role="bold">symbol</emphasis> &qstring; [<emphasis role="bold">(instance</emphasis> &nat;<emphasis role="bold">)</emphasis>] <emphasis role="bold">=</emphasis> &qstring;
18 | <emphasis role="bold">num</emphasis> [<emphasis role="bold">(instance</emphasis> &nat;<emphasis role="bold">)</emphasis>] <emphasis role="bold">=</emphasis> &qstring;
26 <para>Used to give an hint to the disambiguating parser.
27 When the parser is faced to the identifier (or symbol)
28 <command>s</command> or to any number, it will prefer
29 interpretations that "map <command>s</command> (or the
30 number) to <command>def</command>". For identifiers,
31 "def" is the URI of the interpretation.
32 E.g.: <command>cic:/matita/nat/nat.ind#xpointer(1/1/1)</command>
33 for the first constructor of the first inductive type defined
34 in the block of inductive type(s)
35 <command>cic:/matita/nat/nat.ind</command>.
36 For symbols and numbers, "def" is the label used to
38 <link linkend="interpretation">interpretation</link>.
40 <para>When a symbol or a number occurs several times in the
41 term to be parsed, it is possible to give an hint only for the
42 instance <command>n</command>. When the instance is omitted,
43 the hint is valid for every occurrence.
46 Hints are automatically inserted in the script by Matita every
47 time the user is interactively asked a question to disambiguate
48 a term. This way the user won't be posed the same question twice
49 when the script will be executed again.</para>
55 <sect1 id="command_check">
57 <para><userinput>check t</userinput></para>
61 <term>Synopsis:</term>
63 <para><emphasis role="bold">check</emphasis> &term;</para>
69 <para>Opens a CIC browser window that shows <command>t</command>
70 together with its type. The command is immediately removed from
77 <sect1 id="command_coercion">
78 <title>coercion</title>
79 <para><userinput>coercion u</userinput></para>
83 <term>Synopsis:</term>
85 <para><emphasis role="bold">coercion</emphasis> &uri;</para>
91 <para>Declares <command>u</command> as an implicit coercion
92 from the type of its last argument (source)
93 to its codomain (target). Every time a term <command>x</command>
94 of type source is used with expected type target, Matita
95 automatically replaces <command>x</command> with
96 <command>(u ? … ? x)</command> to avoid a typing error.</para>
97 <para>Implicit coercions are not displayed to the user:
98 <command>(u ? … ? x)</command> is rendered simply
99 as <command>x</command>.</para>
100 <para>When a coercion <command>u</command> is declared
101 from source <command>s</command> to target <command>t</command>
102 and there is already a coercion <command>u'</command> of
103 target <command>s</command> or source <command>t</command>,
104 a composite implicit coercion is automatically computed
111 <sect1 id="command_default">
112 <title>default</title>
113 <para><userinput>default "s" u<subscript>1</subscript> … u<subscript>n</subscript></userinput></para>
117 <term>Synopsis:</term>
119 <para><emphasis role="bold">default</emphasis>
120 &qstring; &uri; [&uri;]…
127 <para>It registers a cluster of related definitions and
128 theorems to be used by tactics and the rendering engine.
129 Some functionalities of Matita are not available when some
130 clusters have not been registered. Overloading a cluster
131 registration is possible: the last registration will be the
132 default one, but the previous ones are still in effect.</para>
134 <command>s</command> is an identifier of the cluster and
135 <command>u<subscript>1</subscript> … u<subscript>n</subscript></command>
136 are the URIs of the definitions and theorems of the cluster.
137 The number <command>n</command> of required URIs depends on the
138 cluster. The following clusters are supported.
141 <title>clusters</title>
146 <entry>expected object for 1st URI</entry>
147 <entry>expected object for 2nd URI</entry>
148 <entry>expected object for 3rd URI</entry>
149 <entry>expected object for 4th URI</entry>
150 <entry>expected object for 5th URI</entry>
151 <entry>expected object for 6th URI</entry>
152 <entry>expected object for 7th URI</entry>
153 <entry>expected object for 8th URI</entry>
154 <entry>expected object for 9th URI</entry>
155 <entry>expected object for 10th URI</entry>
156 <entry>expected object for 11th URI</entry>
161 <entry>equality</entry>
162 <entry>an inductive type (say, of type <command>eq</command>) of type ∀A:Type.A <emphasis role="bold">→</emphasis> <emphasis role="bold">Prop</emphasis> with one family parameter and one constructor of type ∀x:A.eq A x</entry>
163 <entry>a theorem of type <emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>x,y:A.eq A x y <emphasis role="bold">→</emphasis> eq A y x</entry>
164 <entry>a theorem of type <emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>x,y,z:A.eq A x y <emphasis role="bold">→</emphasis> eq A y z <emphasis role="bold">→</emphasis> eq A x z</entry>
165 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Prop</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A x y <emphasis role="bold">→</emphasis> P y</entry>
166 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Prop</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A y x <emphasis role="bold">→</emphasis> P y</entry>
167 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Set</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A x y <emphasis role="bold">→</emphasis> P y</entry>
168 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Set</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A y x <emphasis role="bold">→</emphasis> P y</entry>
169 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Type</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A x y <emphasis role="bold">→</emphasis> P y</entry>
170 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>a.<emphasis role="bold">∀</emphasis> P:A <emphasis role="bold">→</emphasis> <emphasis role="bold">Type</emphasis>.P x <emphasis role="bold">→</emphasis> <emphasis role="bold">∀</emphasis>y.eq A y x <emphasis role="bold">→</emphasis> P y</entry>
171 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>B.<emphasis role="bold">∀</emphasis> f:A <emphasis role="bold">→</emphasis> B.<emphasis role="bold">∀</emphasis>x,y:A.eq A x y <emphasis role="bold">→</emphasis> eq B (f x) (f y)</entry>
172 <entry><emphasis role="bold">∀</emphasis>A.<emphasis role="bold">∀</emphasis>B.<emphasis role="bold">∀</emphasis> f:A <emphasis role="bold">→</emphasis> B.<emphasis role="bold">∀</emphasis>x,y:A.eq A x y <emphasis role="bold">→</emphasis> eq B (f y) (f x)</entry>
176 <entry>an inductive type of type <emphasis role="bold">Prop</emphasis> with only one constructor that has no arguments</entry>
184 <entry>an inductive type of type <emphasis role="bold">Prop</emphasis> without constructors</entry>
191 <entry>absurd</entry>
192 <entry>a theorem of type <emphasis role="bold">∀</emphasis>A:Prop.<emphasis role="bold">∀</emphasis>B:Prop.A <emphasis role="bold">→</emphasis> Not A <emphasis role="bold">→</emphasis> B</entry>
206 <sect1 id="command_hint">
208 <para><userinput>hint</userinput></para>
212 <term>Synopsis:</term>
214 <para><emphasis role="bold">hint</emphasis>
221 <para>Displays a list of theorems that can be successfully
222 applied to the current selected sequent. The command is
223 removed from the script, but the window that displays the
224 theorems allow to add to the script the application of the
232 <sect1 id="command_include">
233 <title>include</title>
234 <para><userinput>include "s"</userinput></para>
238 <term>Synopsis:</term>
240 <para><emphasis role="bold">include</emphasis> &qstring;</para>
246 <para>Every <link linkend="command_coercion">coercion</link>,
247 <link linkend="notation">notation</link> and
248 <link linkend="interpretation">interpretation</link> that was active
249 when the file <command>s</command> was compiled last time
250 is made active. The same happens for declarations of
251 <link linkend="command_default">default definitions and
252 theorems</link> and disambiguation
253 hints (<link linkend="command_alias">aliases</link>).
254 On the contrary, theorem and definitions declared in a file can be
255 immediately used without including it.</para>
256 <para>The file <command>s</command> is automatically compiled
257 if it is not compiled yet and if it is handled by a
258 <link linkend="developments">development</link>.
265 <sect1 id="command_include_first">
266 <title>include' "s"</title>
267 <para><userinput></userinput></para>
271 <term>Synopsis:</term>
273 <para><emphasis role="bold">include'</emphasis> &qstring;</para>
279 <para>Not documented (&TODO;), do not use it.</para>
285 <sect1 id="command_set">
287 <para><userinput>set "baseuri" "s"</userinput></para>
291 <term>Synopsis:</term>
293 <para><emphasis role="bold">set</emphasis> &qstring; &qstring;</para>
299 <para>Sets to <command>s</command> the baseuri of all the
300 theorems and definitions stated in the current file.
301 The baseuri should be <command>a/b/c/foo</command>
302 if the file is named <command>foo</command> and it is in
303 the subtree <command>a/b/c</command> of the current
304 <link linkend="developments">development</link>.
305 This requirement is not enforced, but it could be in the future.
307 <para>Currently, <command>baseuri</command> is the only
308 property that can be set even if the parser accepts
309 arbitrary property names.</para>
315 <sect1 id="command_whelp">
317 <para><userinput>whelp locate "s"</userinput></para>
318 <para><userinput>whelp hint t</userinput></para>
319 <para><userinput>whelp elim t</userinput></para>
320 <para><userinput>whelp match t</userinput></para>
321 <para><userinput>whelp instance t</userinput></para>
325 <term>Synopsis:</term>
327 <para><emphasis role="bold">whelp</emphasis>
328 [<emphasis role="bold">locate</emphasis> &qstring;
329 | <emphasis role="bold">hint</emphasis> &term;
330 | <emphasis role="bold">elim</emphasis> &term;
331 | <emphasis role="bold">match</emphasis> &term;
332 | <emphasis role="bold">instance</emphasis> &term;
340 <para>Performs the corresponding <link linkend="whelp">query</link>,
341 showing the result in the CIC browser. The command is removed
349 <sect1 id="command_qed">
351 <para><userinput></userinput></para>
355 <term>Synopsis:</term>
357 <para><emphasis role="bold">qed</emphasis>
364 <para>Saves and indexes the current interactive theorem or
366 In order to do this, the set of sequents still to be proved
367 must be empty.</para>