| author | blanchet | 
| Fri, 05 Sep 2014 00:41:01 +0200 | |
| changeset 58187 | d2ddd401d74d | 
| parent 58154 | 47c3c7019b97 | 
| child 58352 | 37745650a3f4 | 
| permissions | -rw-r--r-- | 
| 12024 | 1 | header {* Main HOL *}
 | 
| 2 | ||
| 15131 | 3 | theory Main | 
| 58128 | 4 | imports Predicate_Compile Quickcheck_Narrowing Extraction Lifting_Sum Coinduction Nitpick | 
| 58154 | 5 | BNF_Greatest_Fixpoint Old_Datatype | 
| 15131 | 6 | begin | 
| 9650 
6f0b89f2a1f9
Main now new-style theory; added Main.ML for compatibility;
 wenzelm parents: 
9619diff
changeset | 7 | |
| 29304 | 8 | text {*
 | 
| 9 | Classical Higher-order Logic -- only ``Main'', excluding real and | |
| 10 | complex numbers etc. | |
| 11 | *} | |
| 12 | ||
| 27367 | 13 | text {* See further \cite{Nipkow-et-al:2002:tutorial} *}
 | 
| 25964 | 14 | |
| 51112 | 15 | no_notation | 
| 16 |   bot ("\<bottom>") and
 | |
| 17 |   top ("\<top>") and
 | |
| 18 | inf (infixl "\<sqinter>" 70) and | |
| 19 | sup (infixl "\<squnion>" 65) and | |
| 20 |   Inf ("\<Sqinter>_" [900] 900) and
 | |
| 55057 | 21 |   Sup ("\<Squnion>_" [900] 900) and
 | 
| 55065 | 22 | ordLeq2 (infix "<=o" 50) and | 
| 23 | ordLeq3 (infix "\<le>o" 50) and | |
| 24 | ordLess2 (infix "<o" 50) and | |
| 25 | ordIso2 (infix "=o" 50) and | |
| 55078 | 26 |   card_of ("|_|") and
 | 
| 55057 | 27 | csum (infixr "+c" 65) and | 
| 28 | cprod (infixr "*c" 80) and | |
| 55086 | 29 | cexp (infixr "^c" 90) and | 
| 57641 
dc59f147b27d
more robust notation BNF_Def.convol, which is private to main HOL, but may cause syntax ambiguities nonetheless (e.g. List.thy);
 wenzelm parents: 
57208diff
changeset | 30 |   convol ("\<langle>(_,/ _)\<rangle>")
 | 
| 51112 | 31 | |
| 55087 
252c7fec4119
renamed 'regular' to 'regularCard' to avoid clashes (e.g. in Meson_Test)
 blanchet parents: 
55086diff
changeset | 32 | hide_const (open) | 
| 58152 | 33 | czero cinfinite cfinite csum cone ctwo Csum cprod cexp image2 image2p vimage2p Gr Grp collect | 
| 34 | fsts snds setl setr convol pick_middlep fstOp sndOp csquare relImage relInvImage Succ Shift | |
| 35 | shift proj | |
| 55087 
252c7fec4119
renamed 'regular' to 'regularCard' to avoid clashes (e.g. in Meson_Test)
 blanchet parents: 
55086diff
changeset | 36 | |
| 51112 | 37 | no_syntax (xsymbols) | 
| 38 |   "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
 | |
| 39 |   "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
 | |
| 40 |   "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
 | |
| 41 |   "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
 | |
| 42 | ||
| 9650 
6f0b89f2a1f9
Main now new-style theory; added Main.ML for compatibility;
 wenzelm parents: 
9619diff
changeset | 43 | end |