-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmizar.toml
More file actions
464 lines (418 loc) · 13.7 KB
/
Copy pathmizar.toml
File metadata and controls
464 lines (418 loc) · 13.7 KB
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
# SPDX-License-Identifier: MPL-2.0
#
# Mizar / MML proof-step, structural, and definition keyword synonyms.
# Schema: see data/synonyms/README.adoc.
# Seeded 2026-06-01 for the Mizar MML corpus saturation pass.
#
# Coverage focus: the natural-language-style proof skeleton (let /
# assume / thus / hence / per cases / suppose), justification glue
# (by / from), article structure (environ / begin / vocabularies /
# theorems / definitions / ...), and the definition heads (mode /
# func / pred / attr / cluster / registration).
# ---------------------------------------------------------------------------
# Proof step keywords
# ---------------------------------------------------------------------------
[[synonym]]
canonical = "thus"
aliases = ["hence", "then thus"]
tactic_class = "proof_step"
semantic_class = "goal_discharge"
notes = """
`thus F;` discharges the current thesis with formula `F` (Mizar's
equivalent of "we have shown `F`, which is what we needed").
`hence F;` is `then thus F;` — it composes the most recent intermediate
result with the discharge, mirroring Coq's `... apply <prev>.` chained
into the goal close.
"""
[[synonym]]
canonical = "hence"
aliases = ["then thus"]
tactic_class = "proof_step"
semantic_class = "linkage_discharge"
notes = """
Discharge + immediate linkage to the previous step. Mizar's parser
treats `hence F;` exactly as `then thus F;` — the chain operator
`then` reuses the prior result as a hypothesis.
"""
[[synonym]]
canonical = "then"
aliases = []
tactic_class = "linkage"
semantic_class = "antecedent_chain"
notes = """
`then` re-uses the immediately preceding statement's conclusion as
the implicit antecedent for the next step. Equivalent to Coq's `;` +
`apply <prev>`. Not a goal-changing tactic on its own — it only
composes with `thus`, `consider`, `take`, or a plain forward step.
"""
[[synonym]]
canonical = "proof"
aliases = []
tactic_class = "structural"
semantic_class = "proof_block_open"
notes = """
Opens a proof block. Mizar's `theorem … proof … end;` is the rigid
shape — no proof block means the theorem is a *postulate-style*
declaration (forbidden in MML submissions but legal in `@proof`-tagged
sketches).
"""
[[synonym]]
canonical = "end"
aliases = []
tactic_class = "structural"
semantic_class = "block_close"
notes = """
Closes the nearest open block (`proof`, `now`, `case`, `suppose`,
`definition`, `registration`, `cluster`, `notation`, `scheme`).
Always paired with a trailing `;`.
"""
[[synonym]]
canonical = "now"
aliases = []
tactic_class = "proof_step"
semantic_class = "diffuse_subproof"
notes = """
`now … end;` opens a "diffuse" subproof — a structured block whose
internal goal isn't fixed up-front but is derived from the steps
inside it. Useful for `per cases` arms and for forward proofs that
build up `thus`-able intermediates.
"""
[[synonym]]
canonical = "assume"
aliases = []
tactic_class = "proof_step"
semantic_class = "hypothesis_intro"
notes = """
Introduces the antecedent of an implication into the local
context. `assume A;` for goal `A implies B` leaves residual goal `B`.
Equivalent to Coq's `intro`/`intros` followed by naming.
"""
[[synonym]]
canonical = "let"
aliases = []
tactic_class = "proof_step"
semantic_class = "universal_elim"
notes = """
`let x be T;` introduces a fresh variable `x : T` into the local
context — discharging a universal quantifier. Equivalent to Coq's
`intro x` when the goal is `for x being T holds …`.
"""
[[synonym]]
canonical = "consider"
aliases = ["consider … such that"]
tactic_class = "proof_step"
semantic_class = "existential_intro"
notes = """
`consider x being T such that A;` eliminates an existential —
mirrors Coq's `destruct H as [x H']`. The `such that` clause becomes
a fresh hypothesis usable by name.
"""
[[synonym]]
canonical = "take"
aliases = []
tactic_class = "proof_step"
semantic_class = "existential_witness"
notes = """
`take t;` provides a witness for an existential goal. Equivalent
to Coq's `exists t.` or Lean's `exact ⟨t, _⟩`.
"""
[[synonym]]
canonical = "per cases"
aliases = ["per_cases"]
tactic_class = "proof_step"
semantic_class = "case_split"
notes = """
`per cases by …;` opens a case split. Each branch is a `suppose A;
… end;`. Mizar requires the `per cases` clause to be justified by
a disjunction-like fact (often `LM_excluded_middle` for classical
splits). Equivalent to Coq's `destruct (classical_dec _)`.
"""
[[synonym]]
canonical = "suppose"
aliases = ["case"]
tactic_class = "proof_step"
semantic_class = "case_arm"
notes = """
Introduces one arm of a `per cases` split. Mizar uses `suppose`;
some older MML articles use `case`. Both close with `end;`.
"""
[[synonym]]
canonical = "cases"
aliases = []
tactic_class = "proof_step"
semantic_class = "case_split_keyword"
notes = """
The `cases` half of `per cases`. Always preceded by `per`. Not used
alone.
"""
# ---------------------------------------------------------------------------
# Linkage / justification
# ---------------------------------------------------------------------------
[[synonym]]
canonical = "by"
aliases = []
tactic_class = "linkage"
semantic_class = "justification"
notes = """
Inline justification: `thus A by Th1, Lemma2;`. The `by` clause is
checked by Mizar's *checker* — a single-step decision procedure with
bounded inference. Roughly Coq's `apply` + small auto.
"""
[[synonym]]
canonical = "from"
aliases = []
tactic_class = "linkage"
semantic_class = "scheme_instantiation"
notes = """
`from Scheme(args)` instantiates a `scheme`. Schemes in Mizar are
second-order — they take predicates / functors as parameters. The
`from` form is the only way to invoke them.
"""
[[synonym]]
canonical = ";"
aliases = []
tactic_class = "linkage"
semantic_class = "statement_terminator"
notes = """
Every Mizar statement ends with `;`. A bare `;` after a forward step
(no `by …`) means "this follows trivially" — Mizar will accept it
if the checker can derive the conclusion from the local context
without any explicit reference.
"""
# ---------------------------------------------------------------------------
# Article structure
# ---------------------------------------------------------------------------
[[synonym]]
canonical = "environ"
aliases = []
tactic_class = "structural"
semantic_class = "imports_block"
notes = """
Opens the article's environment block. Lists library articles whose
declarations are visible. The block ends at `begin`.
"""
[[synonym]]
canonical = "begin"
aliases = []
tactic_class = "structural"
semantic_class = "body_open"
notes = """
Marks the start of the article body. Everything before `begin` is
environ-block directives; everything after is the proof corpus.
"""
[[synonym]]
canonical = "vocabularies"
aliases = []
tactic_class = "structural"
semantic_class = "lexical_imports"
notes = """
Imports symbol vocabularies (token tables for func / pred / attr
names). Vocabulary files live in `mml/voc/*.voc`.
"""
[[synonym]]
canonical = "notations"
aliases = []
tactic_class = "structural"
semantic_class = "syntax_imports"
notes = """
Imports the parsing rules (how funcs / preds / etc. are written).
Roughly Coq's `Notation`.
"""
[[synonym]]
canonical = "constructors"
aliases = []
tactic_class = "structural"
semantic_class = "type_imports"
notes = """
Imports type / func / pred constructors from other articles. Needed
even if the article doesn't directly name them but uses them via
notations.
"""
[[synonym]]
canonical = "registrations"
aliases = []
tactic_class = "structural"
semantic_class = "cluster_imports"
notes = """
Imports `cluster` and `registration` blocks. These deliver Mizar's
typing automation — without them, type inference for adjectives
fails silently.
"""
[[synonym]]
canonical = "requirements"
aliases = []
tactic_class = "structural"
semantic_class = "builtin_imports"
notes = """
Enables specific Mizar requirement modules (e.g. `NUMERALS`, `REAL`,
`SUBSET`, `BOOLE`, `ARITHM`). Each requirement turns on a particular
built-in proof rule in the checker.
"""
[[synonym]]
canonical = "definitions"
aliases = []
tactic_class = "structural"
semantic_class = "definition_imports"
notes = """
Lists articles whose `definition` blocks should be expanded by the
checker. Without this, `definitional unfolding` is unavailable.
"""
[[synonym]]
canonical = "theorems"
aliases = []
tactic_class = "structural"
semantic_class = "lemma_imports"
notes = """
Lists articles whose theorems can be cited (`by Th1.Article:42`).
The bread-and-butter of MML cross-referencing.
"""
[[synonym]]
canonical = "schemes"
aliases = []
tactic_class = "structural"
semantic_class = "scheme_imports"
notes = """
Lists articles whose `scheme` blocks can be instantiated via `from`.
"""
# ---------------------------------------------------------------------------
# Definition heads
# ---------------------------------------------------------------------------
[[synonym]]
canonical = "definition"
aliases = []
tactic_class = "definition"
semantic_class = "definition_block"
notes = """
`definition … end;` opens a definitional block. Inside, one or more
of `func`, `mode`, `pred`, `attr`, `redefine`, `cluster` introduce
new constants / types / predicates / adjectives.
"""
[[synonym]]
canonical = "mode"
aliases = []
tactic_class = "definition"
semantic_class = "type_definition"
notes = """
`mode T of P, Q means …;` introduces a type (Mizar's notion of "type"
is named "mode"). Roughly Coq's `Definition T : Type := …`.
"""
[[synonym]]
canonical = "func"
aliases = []
tactic_class = "definition"
semantic_class = "function_definition"
notes = """
`func F(x: T) -> U means …;` or `func F(...) equals expr;` introduces
a function. The `means` form is implicit; the `equals` form is
explicit (and gives Mizar a computational rule).
"""
[[synonym]]
canonical = "pred"
aliases = []
tactic_class = "definition"
semantic_class = "predicate_definition"
notes = """
`pred x R y means F;` introduces a binary predicate (or n-ary). The
defining formula `F` is the iff body.
"""
[[synonym]]
canonical = "attr"
aliases = []
tactic_class = "definition"
semantic_class = "attribute_definition"
notes = """
`attr x is Adj means F;` introduces an adjective (Mizar's
"attribute") — a predicate written `x is Adj` rather than `Adj(x)`.
Critical for the cluster / registration typing automation.
"""
[[synonym]]
canonical = "cluster"
aliases = []
tactic_class = "definition"
semantic_class = "type_inference_rule"
notes = """
`cluster …;` registers a typing fact for Mizar's auto-typing.
Three flavours: *existential* (some element exists with these
attributes), *conditional* (if these attributes hold, this further
attribute also holds), and *functorial* (the result of this functor
has these attributes).
"""
[[synonym]]
canonical = "registration"
aliases = []
tactic_class = "definition"
semantic_class = "registration_block"
notes = """
`registration … end;` is the block syntax that contains one or more
`cluster` declarations together with their proofs.
"""
[[synonym]]
canonical = "synonym"
aliases = []
tactic_class = "definition"
semantic_class = "alias_introduction"
notes = """
`synonym foo for bar;` adds `foo` as an alias for `bar` in the
current notation scope.
"""
[[synonym]]
canonical = "antonym"
aliases = []
tactic_class = "definition"
semantic_class = "negation_alias"
notes = """
`antonym not-foo for foo;` adds a negated alias — `x is not-foo`
expands to `not (x is foo)`.
"""
# ---------------------------------------------------------------------------
# Special operators and modifiers
# ---------------------------------------------------------------------------
[[synonym]]
canonical = "iff"
aliases = []
tactic_class = "reasoning"
semantic_class = "biconditional"
notes = """
The biconditional connective `iff`. In `pred` and `attr`
definitions, `means` introduces an `iff` (the defining body).
"""
[[synonym]]
canonical = "means"
aliases = []
tactic_class = "definition"
semantic_class = "implicit_definiens"
notes = """
Implicit (predicative) definition body. `func F(x) -> T means
P[x, it];` defines `F(x)` as the unique `it : T` with `P[x, it]`.
Mizar requires existence + uniqueness proofs alongside.
"""
[[synonym]]
canonical = "equals"
aliases = []
tactic_class = "definition"
semantic_class = "explicit_definiens"
notes = """
Explicit (computational) definition body. `func F(x) -> T equals
expr;` defines `F(x)` as `expr` directly. Mizar requires the
correctness proof `expr is T`.
"""
[[synonym]]
canonical = "redefine"
aliases = []
tactic_class = "definition"
semantic_class = "type_refinement"
notes = """
`redefine func F(x) -> T';` narrows the result type of an existing
functor (or the argument types of an existing predicate). Used to
deliver tighter typing for already-defined notions.
"""
[[synonym]]
canonical = "reserve"
aliases = []
tactic_class = "structural"
semantic_class = "variable_typing"
notes = """
`reserve x, y for Real;` declares default types for free variables
throughout the article. Roughly an implicit `for x, y being Real`
prepended to every later statement.
"""