blob: d9f4ffa3147b59955cc86913bae754b92098c82e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
structure Congruence = struct
(* Congruence context data *)
structure RHS = Generic_Data (
type T = (term * indexname) Termtab.table
val empty = Termtab.empty
val extend = I
val merge = Termtab.merge (Term.aconv o apply2 #1)
)
fun register_rhs t var =
let
val key = Term.head_of t
val idxname = #1 (dest_Var var)
in
RHS.map (Termtab.update (key, (t, idxname)))
end
fun lookup_congruence ctxt t =
Termtab.lookup (RHS.get (Context.Proof ctxt)) (Term.head_of t)
(* Congruence declarations *)
local val Frees_to_Vars =
map_aterms (fn tm =>
case tm of
Free (name, T) => Var (("*!"^name, 0), T) (*Hacky naming!*)
| _ => tm)
in
(*Declare the "right-hand side" of types that are congruences.
Does not handle bound variables, so no dependent RHS in declarations!*)
val _ = Outer_Syntax.local_theory \<^command_keyword>\<open>congruence\<close>
"declare right hand side of congruence"
(Parse.term -- (\<^keyword>\<open>rhs\<close> |-- Parse.term) >>
(fn (t_str, rhs_str) => fn lthy =>
let
val (t, rhs) = apply2 (Frees_to_Vars o Syntax.read_term lthy)
(t_str, rhs_str)
in lthy |>
Local_Theory.background_theory (
Context.theory_map (register_rhs t rhs))
end))
end
(* Calculational reasoning: ".." setup *)
fun last_rhs ctxt = map_aterms (fn t =>
case t of
Const (\<^const_name>\<open>rhs\<close>, _) =>
let
val this_name = Name_Space.full_name (Proof_Context.naming_of ctxt)
(Binding.name Auto_Bind.thisN)
val this = #thms (the (Proof_Context.lookup_fact ctxt this_name))
handle Option => []
val rhs =
(case map Thm.prop_of this of
[prop] =>
(let
val typ = Lib.type_of_typing (Logic.strip_assums_concl prop)
val (cong_pttrn, varname) = the (lookup_congruence ctxt typ)
val unif_res = Pattern.unify (Context.Proof ctxt)
(cong_pttrn, typ) Envir.init
val rhs = #2 (the
(Vartab.lookup (Envir.term_env unif_res) varname))
in
rhs
end handle Option =>
error (".. can't match right-hand side of congruence"))
| _ => Term.dummy)
in rhs end
| _ => t)
val _ = Context.>>
(Syntax_Phases.term_check 5 "" (fn ctxt => map (last_rhs ctxt)))
end
|