author | nipkow |
Tue, 17 Jun 2025 14:11:40 +0200 | |
changeset 82733 | 8b537e1af2ec |
parent 81136 | 2b949a3bfaac |
permissions | -rw-r--r-- |
15469 | 1 |
(* Title: HOL/Library/OptionalSugar.thy |
55052 | 2 |
Author: Gerwin Klein, Tobias Nipkow |
15469 | 3 |
Copyright 2005 NICTA and TUM |
4 |
*) |
|
15476 | 5 |
(*<*) |
15469 | 6 |
theory OptionalSugar |
30663
0b6aff7451b2
Main is (Complex_Main) base entry point in library theories
haftmann
parents:
30503
diff
changeset
|
7 |
imports Complex_Main LaTeXsugar |
15469 | 8 |
begin |
9 |
||
61645 | 10 |
(* displaying theorems with conjunctions between premises: *) |
11 |
translations |
|
12 |
("prop") "P \<and> Q \<Longrightarrow> R" <= ("prop") "P \<Longrightarrow> Q \<Longrightarrow> R" |
|
13 |
||
30474 | 14 |
(* hiding set *) |
22835 | 15 |
translations |
30404
d03dd6301678
more robust treatment of (authentic) consts within translations;
wenzelm
parents:
29494
diff
changeset
|
16 |
"xs" <= "CONST set xs" |
22835 | 17 |
|
30474 | 18 |
(* hiding numeric conversions - embeddings only *) |
19 |
translations |
|
20 |
"n" <= "CONST of_nat n" |
|
21 |
"n" <= "CONST int n" |
|
35115 | 22 |
"n" <= "CONST real n" |
30474 | 23 |
"n" <= "CONST real_of_nat n" |
24 |
"n" <= "CONST real_of_int n" |
|
30502 | 25 |
"n" <= "CONST of_real n" |
26 |
"n" <= "CONST complex_of_real n" |
|
30474 | 27 |
|
15469 | 28 |
(* append *) |
29 |
syntax (latex output) |
|
80914
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
30 |
"_appendL" :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixl \<open>\<^latex>\<open>\isacharat\<close>\<close> 65) |
15469 | 31 |
translations |
35115 | 32 |
"_appendL xs ys" <= "xs @ ys" |
33 |
"_appendL (_appendL xs ys) zs" <= "_appendL xs (_appendL ys zs)" |
|
15469 | 34 |
|
35 |
||
32891 | 36 |
(* deprecated, use thm with style instead, will be removed *) |
15469 | 37 |
(* aligning equations *) |
21210 | 38 |
notation (tab output) |
80914
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
39 |
"HOL.eq" (\<open>(_) \<^latex>\<open>}\putisatab\isa{\ \<close>=\<^latex>\<open>}\putisatab\isa{\<close> (_)\<close> [50,49] 50) and |
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
40 |
"Pure.eq" (\<open>(_) \<^latex>\<open>}\putisatab\isa{\ \<close>\<equiv>\<^latex>\<open>}\putisatab\isa{\<close> (_)\<close>) |
15469 | 41 |
|
42 |
(* Let *) |
|
43 |
translations |
|
35250 | 44 |
"_bind (p, CONST DUMMY) e" <= "_bind p (CONST fst e)" |
45 |
"_bind (CONST DUMMY, p) e" <= "_bind p (CONST snd e)" |
|
15469 | 46 |
|
47 |
"_tuple_args x (_tuple_args y z)" == |
|
48 |
"_tuple_args x (_tuple_arg (_tuple y z))" |
|
49 |
||
35250 | 50 |
"_bind (CONST Some p) e" <= "_bind p (CONST the e)" |
51 |
"_bind (p # CONST DUMMY) e" <= "_bind p (CONST hd e)" |
|
52 |
"_bind (CONST DUMMY # p) e" <= "_bind p (CONST tl e)" |
|
15469 | 53 |
|
81136 | 54 |
unbundle constrain_space_syntax |
55038
f2179be64805
prefer Isar commands over old-fashioned ML (see also a189c6274c7a);
wenzelm
parents:
42297
diff
changeset
|
55 |
|
29494 | 56 |
|
57 |
(* sorts as intersections *) |
|
55038
f2179be64805
prefer Isar commands over old-fashioned ML (see also a189c6274c7a);
wenzelm
parents:
42297
diff
changeset
|
58 |
|
61955
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents:
61645
diff
changeset
|
59 |
syntax (output) |
80914
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
60 |
"_topsort" :: "sort" (\<open>\<top>\<close> 1000) |
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
61 |
"_sort" :: "classes => sort" (\<open>'(_')\<close> 1000) |
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
62 |
"_classes" :: "id => classes => classes" (\<open>_ \<inter> _\<close> 1000) |
d97fdabd9e2b
standardize mixfix annotations via "isabelle update -a -u mixfix_cartouches" --- to simplify systematic editing;
wenzelm
parents:
63935
diff
changeset
|
63 |
"_classes" :: "longid => classes => classes" (\<open>_ \<inter> _\<close> 1000) |
15469 | 64 |
|
15476 | 65 |
end |
66 |
(*>*) |