src/HOL/Main.thy
author kuncar
Tue, 13 Aug 2013 15:59:22 +0200
changeset 53012 cb82606b8215
parent 51112 da97167e03f7
child 54538 ba7392b52a7c
permissions -rw-r--r--
move Lifting/Transfer relevant parts of Library/Quotient_* to Main
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12024
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
     1
header {* Main HOL *}
b3661262541e moved String into Main;
wenzelm
parents: 11533
diff changeset
     2
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15063
diff changeset
     3
theory Main
53012
cb82606b8215 move Lifting/Transfer relevant parts of Library/Quotient_* to Main
kuncar
parents: 51112
diff changeset
     4
imports Predicate_Compile Nitpick Extraction Lifting_Sum
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15063
diff changeset
     5
begin
9650
6f0b89f2a1f9 Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents: 9619
diff changeset
     6
29304
5c71a6da989d tuned header and description of boot files;
wenzelm
parents: 28263
diff changeset
     7
text {*
5c71a6da989d tuned header and description of boot files;
wenzelm
parents: 28263
diff changeset
     8
  Classical Higher-order Logic -- only ``Main'', excluding real and
5c71a6da989d tuned header and description of boot files;
wenzelm
parents: 28263
diff changeset
     9
  complex numbers etc.
5c71a6da989d tuned header and description of boot files;
wenzelm
parents: 28263
diff changeset
    10
*}
5c71a6da989d tuned header and description of boot files;
wenzelm
parents: 28263
diff changeset
    11
27367
a75d71c73362 added dummy citiation
haftmann
parents: 26729
diff changeset
    12
text {* See further \cite{Nipkow-et-al:2002:tutorial} *}
25964
080f89d89990 consistent interacitve bootstrap of HOL-Main
haftmann
parents: 25223
diff changeset
    13
51112
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    14
no_notation
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    15
  bot ("\<bottom>") and
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    16
  top ("\<top>") and
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    17
  inf (infixl "\<sqinter>" 70) and
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    18
  sup (infixl "\<squnion>" 65) and
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    19
  Inf ("\<Sqinter>_" [900] 900) and
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    20
  Sup ("\<Squnion>_" [900] 900)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    21
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    22
no_syntax (xsymbols)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    23
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    24
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    25
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    26
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
da97167e03f7 abandoned theory Plain
haftmann
parents: 46155
diff changeset
    27
9650
6f0b89f2a1f9 Main now new-style theory; added Main.ML for compatibility;
wenzelm
parents: 9619
diff changeset
    28
end