File ‹Tools/Function/sum_tree.ML›
signature SUM_TREE =
sig
val sumcase_split_ss: simpset
val access_top_down: {init: 'a, left: 'a -> 'a, right: 'a -> 'a} -> int -> int -> 'a
val mk_sumT: typ -> typ -> typ
val mk_sumcase: typ -> typ -> typ -> term -> term -> term
val App: term -> term -> term
val mk_inj: typ -> int -> int -> term -> term
val mk_proj: typ -> int -> int -> term -> term
val mk_sumcases: typ -> term list -> term
end
structure Sum_Tree: SUM_TREE =
struct
val sumcase_split_ss =
simpset_of (put_simpset HOL_basic_ss \<^context>
addsimps (@{thm Product_Type.split} :: @{thms sum.case}))
fun access_top_down {left, right, init} len i =
Balanced_Tree.access
{left = (fn f => f o left), right = (fn f => f o right), init = I} len i init
fun mk_sumT LT RT = Type (\<^type_name>‹Sum_Type.sum›, [LT, RT])
fun mk_sumcase TL TR T l r =
Const (\<^const_name>‹sum.case_sum›, (TL --> T) --> (TR --> T) --> mk_sumT TL TR --> T) $ l $ r
val App = curry op $
fun mk_inj ST n i =
access_top_down
{ init = (ST, I : term -> term),
left = (fn (T as Type (\<^type_name>‹Sum_Type.sum›, [LT, RT]), inj) =>
(LT, inj o App (Const (\<^const_name>‹Inl›, LT --> T)))),
right =(fn (T as Type (\<^type_name>‹Sum_Type.sum›, [LT, RT]), inj) =>
(RT, inj o App (Const (\<^const_name>‹Inr›, RT --> T))))} n i
|> snd
fun mk_proj ST n i =
access_top_down
{ init = (ST, I : term -> term),
left = (fn (T as Type (\<^type_name>‹Sum_Type.sum›, [LT, RT]), proj) =>
(LT, App (Const (\<^const_name>‹Sum_Type.projl›, T --> LT)) o proj)),
right =(fn (T as Type (\<^type_name>‹Sum_Type.sum›, [LT, RT]), proj) =>
(RT, App (Const (\<^const_name>‹Sum_Type.projr›, T --> RT)) o proj))} n i
|> snd
fun mk_sumcases T fs =
Balanced_Tree.make (fn ((f, fT), (g, gT)) => (mk_sumcase fT gT T f g, mk_sumT fT gT))
(map (fn f => (f, domain_type (fastype_of f))) fs)
|> fst
end