author | wenzelm |
Thu, 05 Sep 2024 17:39:45 +0200 | |
changeset 80809 | 4a64fc4d1cde |
parent 80566 | 446b887e23c7 |
permissions | -rw-r--r-- |
43730 | 1 |
/* Title: Pure/term.scala |
2 |
Author: Makarius |
|
3 |
||
43779 | 4 |
Lambda terms, types, sorts. |
43730 | 5 |
|
6 |
Note: Isabelle/ML is the primary environment for logical operations. |
|
7 |
*/ |
|
8 |
||
9 |
package isabelle |
|
10 |
||
11 |
||
75393 | 12 |
object Term { |
70383
38ac2e714729
more operations (avoid clones in Isabelle/MMT and Isabelle/Dedukti);
wenzelm
parents:
68265
diff
changeset
|
13 |
/* types and terms */ |
38ac2e714729
more operations (avoid clones in Isabelle/MMT and Isabelle/Dedukti);
wenzelm
parents:
68265
diff
changeset
|
14 |
|
75393 | 15 |
sealed case class Indexname(name: String, index: Int = 0) { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
16 |
private lazy val hash: Int = (name, index).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
17 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
18 |
|
70537
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
19 |
override def toString: String = |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
20 |
if (index == -1) name |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
21 |
else { |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
22 |
val dot = |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
23 |
Symbol.explode(name).reverse match { |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
24 |
case _ :: s :: _ if s == Symbol.sub_decoded || s == Symbol.sub => false |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
25 |
case c :: _ => Symbol.is_digit(c) |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
26 |
case _ => true |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
27 |
} |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
28 |
if (dot) "?" + name + "." + index |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
29 |
else if (index != 0) "?" + name + index |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
30 |
else "?" + name |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
31 |
} |
17160e0a60b6
Indexname.toString according to string_of_vname' in ML;
wenzelm
parents:
70536
diff
changeset
|
32 |
} |
43730 | 33 |
|
70850 | 34 |
type Class = String |
35 |
type Sort = List[Class] |
|
43730 | 36 |
|
37 |
sealed abstract class Typ |
|
75393 | 38 |
case class Type(name: String, args: List[Typ] = Nil) extends Typ { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
39 |
private lazy val hash: Int = ("Type", name, args).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
40 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
41 |
|
70846 | 42 |
override def toString: String = |
43 |
if (this == dummyT) "_" |
|
77368 | 44 |
else "Type(" + name + if_proper(args, "," + args) + ")" |
70846 | 45 |
} |
75393 | 46 |
case class TFree(name: String, sort: Sort = Nil) extends Typ { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
47 |
private lazy val hash: Int = ("TFree", name, sort).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
48 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
49 |
|
70846 | 50 |
override def toString: String = |
77368 | 51 |
"TFree(" + name + if_proper(sort, "," + sort) + ")" |
70846 | 52 |
} |
75393 | 53 |
case class TVar(name: Indexname, sort: Sort = Nil) extends Typ { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
54 |
private lazy val hash: Int = ("TVar", name, sort).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
55 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
56 |
|
70846 | 57 |
override def toString: String = |
77368 | 58 |
"TVar(" + name + if_proper(sort, "," + sort) + ")" |
70846 | 59 |
} |
71601 | 60 |
val dummyT: Type = Type("dummy") |
43730 | 61 |
|
75393 | 62 |
sealed abstract class Term { |
71221 | 63 |
def head: Term = |
64 |
this match { |
|
65 |
case App(fun, _) => fun.head |
|
66 |
case _ => this |
|
67 |
} |
|
68 |
} |
|
75393 | 69 |
case class Const(name: String, typargs: List[Typ] = Nil) extends Term { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
70 |
private lazy val hash: Int = ("Const", name, typargs).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
71 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
72 |
|
70846 | 73 |
override def toString: String = |
70897 | 74 |
if (this == dummy) "_" |
77368 | 75 |
else "Const(" + name + if_proper(typargs, "," + typargs) + ")" |
70846 | 76 |
} |
75393 | 77 |
case class Free(name: String, typ: Typ = dummyT) extends Term { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
78 |
private lazy val hash: Int = ("Free", name, typ).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
79 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
80 |
|
70846 | 81 |
override def toString: String = |
82 |
"Free(" + name + (if (typ == dummyT) "" else "," + typ) + ")" |
|
83 |
} |
|
75393 | 84 |
case class Var(name: Indexname, typ: Typ = dummyT) extends Term { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
85 |
private lazy val hash: Int = ("Var", name, typ).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
86 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
87 |
|
70846 | 88 |
override def toString: String = |
89 |
"Var(" + name + (if (typ == dummyT) "" else "," + typ) + ")" |
|
90 |
} |
|
43730 | 91 |
case class Bound(index: Int) extends Term |
75393 | 92 |
case class Abs(name: String, typ: Typ, body: Term) extends Term { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
93 |
private lazy val hash: Int = ("Abs", name, typ, body).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
94 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
95 |
} |
75393 | 96 |
case class App(fun: Term, arg: Term) extends Term { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
97 |
private lazy val hash: Int = ("App", fun, arg).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
98 |
override def hashCode(): Int = hash |
80566
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
99 |
} |
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
100 |
case class OFCLASS(typ: Typ, name: String) extends Term { |
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
101 |
private lazy val hash: Int = ("OFCLASS", typ, name).hashCode() |
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
102 |
override def hashCode(): Int = hash |
70850 | 103 |
} |
68265 | 104 |
|
70897 | 105 |
def dummy_pattern(ty: Typ): Term = Const("Pure.dummy_pattern", List(ty)) |
106 |
val dummy: Term = dummy_pattern(dummyT) |
|
107 |
||
80566
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
108 |
def mk_of_sort(typ: Typ, s: Sort): List[Term] = s.map(c => OFCLASS(typ, c)) |
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
109 |
|
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
110 |
sealed abstract class Proof |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
111 |
case object MinProof extends Proof |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
112 |
case class PBound(index: Int) extends Proof |
75393 | 113 |
case class Abst(name: String, typ: Typ, body: Proof) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
114 |
private lazy val hash: Int = ("Abst", name, typ, body).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
115 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
116 |
} |
75393 | 117 |
case class AbsP(name: String, hyp: Term, body: Proof) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
118 |
private lazy val hash: Int = ("AbsP", name, hyp, body).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
119 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
120 |
} |
75393 | 121 |
case class Appt(fun: Proof, arg: Term) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
122 |
private lazy val hash: Int = ("Appt", fun, arg).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
123 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
124 |
} |
75393 | 125 |
case class AppP(fun: Proof, arg: Proof) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
126 |
private lazy val hash: Int = ("AppP", fun, arg).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
127 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
128 |
} |
75393 | 129 |
case class Hyp(hyp: Term) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
130 |
private lazy val hash: Int = ("Hyp", hyp).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
131 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
132 |
} |
75393 | 133 |
case class PAxm(name: String, types: List[Typ]) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
134 |
private lazy val hash: Int = ("PAxm", name, types).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
135 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
136 |
} |
75393 | 137 |
case class PClass(typ: Typ, cls: Class) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
138 |
private lazy val hash: Int = ("PClass", typ, cls).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
139 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
140 |
} |
75393 | 141 |
case class Oracle(name: String, prop: Term, types: List[Typ]) extends Proof { |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
142 |
private lazy val hash: Int = ("Oracle", name, prop, types).hashCode() |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
143 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
144 |
} |
80295
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
145 |
case class PThm(serial: Long, theory_name: String, thm_name: Thm_Name, types: List[Typ]) extends Proof { |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
146 |
private lazy val hash: Int = ("PThm", serial, theory_name, thm_name, types).hashCode() |
74121
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
147 |
override def hashCode(): Int = hash |
bc03b0b82fe6
prefer persistent hash code for cachable items (see also 72b13af7f266);
wenzelm
parents:
73031
diff
changeset
|
148 |
} |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
149 |
|
68265 | 150 |
|
151 |
||
152 |
/** cache **/ |
|
153 |
||
75393 | 154 |
object Cache { |
73024 | 155 |
def make( |
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
75393
diff
changeset
|
156 |
compress: Compress.Cache = Compress.Cache.make(), |
73026
237bd6318cc1
more uniform default --- hardly relevant in practice;
wenzelm
parents:
73024
diff
changeset
|
157 |
max_string: Int = isabelle.Cache.default_max_string, |
73024 | 158 |
initial_size: Int = isabelle.Cache.default_initial_size): Cache = |
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
75393
diff
changeset
|
159 |
new Cache(compress, initial_size, max_string) |
68265 | 160 |
|
73024 | 161 |
val none: Cache = make(max_string = 0) |
162 |
} |
|
163 |
||
76351
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
75393
diff
changeset
|
164 |
class Cache(compress: Compress.Cache, max_string: Int, initial_size: Int) |
2cee31cd92f0
generic support for XZ and Zstd compression in Isabelle/Scala;
wenzelm
parents:
75393
diff
changeset
|
165 |
extends XML.Cache(compress, max_string, initial_size) { |
68265 | 166 |
protected def cache_indexname(x: Indexname): Indexname = |
70536 | 167 |
lookup(x) getOrElse store(Indexname(cache_string(x.name), x.index)) |
68265 | 168 |
|
169 |
protected def cache_sort(x: Sort): Sort = |
|
73024 | 170 |
if (x.isEmpty) Nil |
171 |
else lookup(x) getOrElse store(x.map(cache_string)) |
|
68265 | 172 |
|
75393 | 173 |
protected def cache_typ(x: Typ): Typ = { |
68265 | 174 |
if (x == dummyT) dummyT |
175 |
else |
|
176 |
lookup(x) match { |
|
177 |
case Some(y) => y |
|
178 |
case None => |
|
179 |
x match { |
|
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
180 |
case Type(name, args) => store(Type(cache_string(name), cache_typs(args))) |
68265 | 181 |
case TFree(name, sort) => store(TFree(cache_string(name), cache_sort(sort))) |
182 |
case TVar(name, sort) => store(TVar(cache_indexname(name), cache_sort(sort))) |
|
183 |
} |
|
184 |
} |
|
185 |
} |
|
186 |
||
75393 | 187 |
protected def cache_typs(x: List[Typ]): List[Typ] = { |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
188 |
if (x.isEmpty) Nil |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
189 |
else { |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
190 |
lookup(x) match { |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
191 |
case Some(y) => y |
71601 | 192 |
case None => store(x.map(cache_typ)) |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
193 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
194 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
195 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
196 |
|
75393 | 197 |
protected def cache_term(x: Term): Term = { |
68265 | 198 |
lookup(x) match { |
199 |
case Some(y) => y |
|
200 |
case None => |
|
201 |
x match { |
|
70784
799437173553
Term_XML.Encode/Decode.term uses Const "typargs";
wenzelm
parents:
70559
diff
changeset
|
202 |
case Const(name, typargs) => store(Const(cache_string(name), cache_typs(typargs))) |
68265 | 203 |
case Free(name, typ) => store(Free(cache_string(name), cache_typ(typ))) |
204 |
case Var(name, typ) => store(Var(cache_indexname(name), cache_typ(typ))) |
|
70536 | 205 |
case Bound(_) => store(x) |
68265 | 206 |
case Abs(name, typ, body) => |
207 |
store(Abs(cache_string(name), cache_typ(typ), cache_term(body))) |
|
208 |
case App(fun, arg) => store(App(cache_term(fun), cache_term(arg))) |
|
80566
446b887e23c7
clarified data representation: prefer explicit OFCLASS constructor, following datatype zterm;
wenzelm
parents:
80313
diff
changeset
|
209 |
case OFCLASS(typ, name) => store(OFCLASS(cache_typ(typ), cache_string(name))) |
68265 | 210 |
} |
211 |
} |
|
212 |
} |
|
213 |
||
80295
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
214 |
protected def cache_thm_name(x: Thm_Name): Thm_Name = |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
215 |
if (x == Thm_Name.empty) Thm_Name.empty |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
216 |
else lookup(x) getOrElse store(Thm_Name(cache_string(x.name), x.index)) |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
217 |
|
75393 | 218 |
protected def cache_proof(x: Proof): Proof = { |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
219 |
if (x == MinProof) MinProof |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
220 |
else { |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
221 |
lookup(x) match { |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
222 |
case Some(y) => y |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
223 |
case None => |
71781 | 224 |
(x: @unchecked) match { |
70536 | 225 |
case PBound(_) => store(x) |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
226 |
case Abst(name, typ, body) => |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
227 |
store(Abst(cache_string(name), cache_typ(typ), cache_proof(body))) |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
228 |
case AbsP(name, hyp, body) => |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
229 |
store(AbsP(cache_string(name), cache_term(hyp), cache_proof(body))) |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
230 |
case Appt(fun, arg) => store(Appt(cache_proof(fun), cache_term(arg))) |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
231 |
case AppP(fun, arg) => store(AppP(cache_proof(fun), cache_proof(arg))) |
70535 | 232 |
case Hyp(hyp) => store(Hyp(cache_term(hyp))) |
233 |
case PAxm(name, types) => store(PAxm(cache_string(name), cache_typs(types))) |
|
71777
3875815f5967
clarified signature: avoid clash with Isabelle/Scala Term.OFCLASS on case-insensible file-system;
wenzelm
parents:
71601
diff
changeset
|
234 |
case PClass(typ, cls) => store(PClass(cache_typ(typ), cache_string(cls))) |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
235 |
case Oracle(name, prop, types) => |
70834 | 236 |
store(Oracle(cache_string(name), cache_term(prop), cache_typs(types))) |
80295
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
237 |
case PThm(serial, theory_name, thm_name, types) => |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
238 |
store(PThm(serial, cache_string(theory_name), cache_thm_name(thm_name), |
8a9588ffc133
more accurate Thm_Name.T for PThm / Thm.name_derivation / Thm.derivation_name;
wenzelm
parents:
77368
diff
changeset
|
239 |
cache_typs(types))) |
70533
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
240 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
241 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
242 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
243 |
} |
031620901fcd
support for (fully reconstructed) proof terms in Scala;
wenzelm
parents:
70385
diff
changeset
|
244 |
|
68265 | 245 |
// main methods |
73024 | 246 |
def indexname(x: Indexname): Indexname = |
247 |
if (no_cache) x else synchronized { cache_indexname(x) } |
|
248 |
def sort(x: Sort): Sort = |
|
249 |
if (no_cache) x else synchronized { cache_sort(x) } |
|
250 |
def typ(x: Typ): Typ = |
|
251 |
if (no_cache) x else synchronized { cache_typ(x) } |
|
252 |
def term(x: Term): Term = |
|
253 |
if (no_cache) x else synchronized { cache_term(x) } |
|
80313
a828e47c867c
clarified data representation: prefer explicit type Thm_Name;
wenzelm
parents:
80295
diff
changeset
|
254 |
def thm_name(x: Thm_Name): Thm_Name = |
a828e47c867c
clarified data representation: prefer explicit type Thm_Name;
wenzelm
parents:
80295
diff
changeset
|
255 |
if (no_cache) x else synchronized { cache_thm_name(x) } |
73024 | 256 |
def proof(x: Proof): Proof = |
257 |
if (no_cache) x else synchronized { cache_proof(x) } |
|
68265 | 258 |
|
259 |
def position(x: Position.T): Position.T = |
|
73024 | 260 |
if (no_cache) x |
261 |
else synchronized { x.map({ case (a, b) => (cache_string(a), cache_string(b)) }) } |
|
68265 | 262 |
} |
43731
70072780e095
inner syntax supports inlined YXML according to Term_XML (particularly useful for producing text under program control);
wenzelm
parents:
43730
diff
changeset
|
263 |
} |