src/HOLCF/Tools/Domain/domain_axioms.ML
author huffman
Mon, 02 Nov 2009 12:26:23 -0800
changeset 33396 45c5c3c51918
parent 33317 b4534348b8fd
child 33504 b4210cc3ac97
permissions -rw-r--r--
domain package no longer uses cfst/csnd/cpair
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
32126
a5042f260440 obey captialized directory names convention
haftmann
parents: 31738
diff changeset
     1
(*  Title:      HOLCF/Tools/Domain/domain_axioms.ML
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     2
    Author:     David von Oheimb
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     3
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     4
Syntax generator for domain command.
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     5
*)
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
     6
30919
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
     7
signature DOMAIN_AXIOMS =
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
     8
sig
31738
7b9b9ba532ca discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31288
diff changeset
     9
  val copy_of_dtyp : (int -> term) -> Datatype.dtyp -> term
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    10
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    11
  val calc_axioms :
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    12
      string -> Domain_Library.eq list -> int -> Domain_Library.eq ->
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    13
      string * (string * term) list * (string * term) list
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    14
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    15
  val add_axioms :
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    16
      bstring -> Domain_Library.eq list -> theory -> theory
30919
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
    17
end;
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
    18
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
    19
33245
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
    20
structure Domain_Axioms : DOMAIN_AXIOMS =
30919
dcf8a7a66bd1 make domain package ML interface more consistent with datatype package; use binding instead of bstring
huffman
parents: 30912
diff changeset
    21
struct
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    22
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    23
open Domain_Library;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    24
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    25
infixr 0 ===>;infixr 0 ==>;infix 0 == ; 
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    26
infix 1 ===; infix 1 ~= ; infix 1 <<; infix 1 ~<<;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    27
infix 9 `   ; infix 9 `% ; infix 9 `%%; infixr 9 oo;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    28
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    29
(* FIXME: use theory data for this *)
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    30
val copy_tab : string Symtab.table =
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    31
    Symtab.make [(@{type_name "->"}, @{const_name "cfun_fun"}),
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    32
                 (@{type_name "++"}, @{const_name "ssum_fun"}),
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    33
                 (@{type_name "**"}, @{const_name "sprod_fun"}),
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    34
                 (@{type_name "*"}, @{const_name "cprod_fun"}),
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    35
                 (@{type_name "u"}, @{const_name "u_fun"})];
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    36
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    37
fun copy_of_dtyp r dt = if DatatypeAux.is_rec_type dt then copy r dt else ID
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    38
and copy r (DatatypeAux.DtRec i) = r i
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    39
  | copy r (DatatypeAux.DtTFree a) = ID
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    40
  | copy r (DatatypeAux.DtType (c, ds)) =
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    41
    case Symtab.lookup copy_tab c of
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    42
      SOME f => list_ccomb (%%:f, map (copy_of_dtyp r) ds)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    43
    | NONE => (warning ("copy_of_dtyp: unknown type constructor " ^ c); ID);
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    44
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    45
fun calc_axioms
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    46
      (comp_dname : string)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    47
      (eqs : eq list)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    48
      (n : int)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    49
      (eqn as ((dname,_),cons) : eq)
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    50
    : string * (string * term) list * (string * term) list =
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    51
    let
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    52
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    53
      (* ----- axioms and definitions concerning the isomorphism ------------------ *)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    54
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    55
      val dc_abs = %%:(dname^"_abs");
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    56
      val dc_rep = %%:(dname^"_rep");
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    57
      val x_name'= "x";
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    58
      val x_name = idx_name eqs x_name' (n+1);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    59
      val dnam = Long_Name.base_name dname;
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
    60
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    61
      val abs_iso_ax = ("abs_iso", mk_trp(dc_rep`(dc_abs`%x_name') === %:x_name'));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    62
      val rep_iso_ax = ("rep_iso", mk_trp(dc_abs`(dc_rep`%x_name') === %:x_name'));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    63
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    64
      val when_def = ("when_def",%%:(dname^"_when") == 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    65
                                List.foldr (uncurry /\ ) (/\x_name'((when_body cons (fn (x,y) =>
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    66
                                                                                        Bound(1+length cons+x-y)))`(dc_rep`Bound 0))) (when_funs cons));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    67
          
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    68
      val copy_def =
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
    69
          let fun r i = proj (Bound 0) eqs i;
31232
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    70
          in ("copy_def", %%:(dname^"_copy") ==
689aa7da48cc define copy functions using combinators; add checking for failed proofs of induction rules
huffman
parents: 31227
diff changeset
    71
                          /\ "f" (dc_abs oo (copy_of_dtyp r (dtyp_of_eq eqn)) oo dc_rep)) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    72
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    73
      (* -- definitions concerning the constructors, discriminators and selectors - *)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    74
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    75
      fun con_def m n (_,args) = let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    76
        fun idxs z x arg = (if is_lazy arg then mk_up else I) (Bound(z-x));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    77
        fun parms vs = mk_stuple (mapn (idxs(length vs)) 1 vs);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    78
        fun inj y 1 _ = y
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    79
          | inj y _ 0 = mk_sinl y
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    80
          | inj y i j = mk_sinr (inj y (i-1) (j-1));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    81
      in List.foldr /\# (dc_abs`(inj (parms args) m n)) args end;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    82
          
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    83
      val con_defs = mapn (fn n => fn (con,args) =>
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    84
                                      (extern_name con ^"_def", %%:con == con_def (length cons) n (con,args))) 0 cons;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    85
          
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    86
      val dis_defs = let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    87
        fun ddef (con,_) = (dis_name con ^"_def",%%:(dis_name con) == 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    88
                                                list_ccomb(%%:(dname^"_when"),map 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    89
                                                                                (fn (con',args) => (List.foldr /\#
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    90
      (if con'=con then TT else FF) args)) cons))
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    91
      in map ddef cons end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
    92
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    93
      val mat_defs =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    94
          let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    95
            fun mdef (con,_) =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    96
                let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    97
                  val k = Bound 0
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    98
                  val x = Bound 1
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
    99
                  fun one_con (con', args') =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   100
                      if con'=con then k else List.foldr /\# mk_fail args'
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   101
                  val w = list_ccomb(%%:(dname^"_when"), map one_con cons)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   102
                  val rhs = /\ "x" (/\ "k" (w ` x))
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   103
                in (mat_name con ^"_def", %%:(mat_name con) == rhs) end
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   104
          in map mdef cons end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   105
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   106
      val pat_defs =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   107
          let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   108
            fun pdef (con,args) =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   109
                let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   110
                  val ps = mapn (fn n => fn _ => %:("pat" ^ string_of_int n)) 1 args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   111
                  val xs = map (bound_arg args) args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   112
                  val r = Bound (length args);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   113
                  val rhs = case args of [] => mk_return HOLogic.unit
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   114
                                       | _ => mk_ctuple_pat ps ` mk_ctuple xs;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   115
                  fun one_con (con',args') = List.foldr /\# (if con'=con then rhs else mk_fail) args';
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   116
                in (pat_name con ^"_def", list_comb (%%:(pat_name con), ps) == 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   117
                                                    list_ccomb(%%:(dname^"_when"), map one_con cons))
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   118
                end
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   119
          in map pdef cons end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   120
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   121
      val sel_defs = let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   122
        fun sdef con n arg = Option.map (fn sel => (sel^"_def",%%:sel == 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   123
                                                              list_ccomb(%%:(dname^"_when"),map 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   124
                                                                                              (fn (con',args) => if con'<>con then UU else
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   125
                                                                                                                 List.foldr /\# (Bound (length args - n)) args) cons))) (sel_of arg);
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 32126
diff changeset
   126
      in map_filter I (maps (fn (con,args) => mapn (sdef con) 1 args) cons) end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   127
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   128
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   129
      (* ----- axiom and definitions concerning induction ------------------------- *)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   130
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   131
      val reach_ax = ("reach", mk_trp(proj (mk_fix (%%:(comp_dname^"_copy"))) eqs n
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   132
                                            `%x_name === %:x_name));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   133
      val take_def =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   134
          ("take_def",
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   135
           %%:(dname^"_take") ==
33396
45c5c3c51918 domain package no longer uses cfst/csnd/cpair
huffman
parents: 33317
diff changeset
   136
              mk_lam("n",proj
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   137
                           (mk_iterate (Bound 0, %%:(comp_dname^"_copy"), UU)) eqs n));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   138
      val finite_def =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   139
          ("finite_def",
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   140
           %%:(dname^"_finite") ==
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   141
              mk_lam(x_name,
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   142
                     mk_ex("n",(%%:(dname^"_take") $ Bound 0)`Bound 1 === Bound 1)));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   143
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   144
    in (dnam,
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   145
        [abs_iso_ax, rep_iso_ax, reach_ax],
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   146
        [when_def, copy_def] @
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   147
        con_defs @ dis_defs @ mat_defs @ pat_defs @ sel_defs @
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   148
        [take_def, finite_def])
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   149
    end; (* let (calc_axioms) *)
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   150
30483
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   151
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   152
(* legacy type inference *)
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   153
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   154
fun legacy_infer_term thy t =
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   155
    singleton (Syntax.check_terms (ProofContext.init thy)) (Sign.intern_term thy t);
30483
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   156
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   157
fun legacy_infer_prop thy t = legacy_infer_term thy (TypeInfer.constrain propT t);
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   158
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   159
fun infer_props thy = map (apsnd (legacy_infer_prop thy));
0c398040969c added legacy type inference (from fixrec_package.ML);
wenzelm
parents: 30364
diff changeset
   160
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   161
29585
c23295521af5 binding replaces bstring
haftmann
parents: 28965
diff changeset
   162
fun add_axioms_i x = snd o PureThy.add_axioms (map (Thm.no_attributes o apfst Binding.name) x);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   163
fun add_axioms_infer axms thy = add_axioms_i (infer_props thy axms) thy;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   164
29585
c23295521af5 binding replaces bstring
haftmann
parents: 28965
diff changeset
   165
fun add_defs_i x = snd o (PureThy.add_defs false) (map (Thm.no_attributes o apfst Binding.name) x);
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   166
fun add_defs_infer defs thy = add_defs_i (infer_props thy defs) thy;
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   167
30131
6be1be402ef0 use TheoryData to keep track of pattern match combinators
huffman
parents: 29585
diff changeset
   168
fun add_matchers (((dname,_),cons) : eq) thy =
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   169
    let
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   170
      val con_names = map fst cons;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   171
      val mat_names = map mat_name con_names;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   172
      fun qualify n = Sign.full_name thy (Binding.name n);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   173
      val ms = map qualify con_names ~~ map qualify mat_names;
31738
7b9b9ba532ca discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents: 31288
diff changeset
   174
    in Fixrec.add_matchers ms thy end;
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   175
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   176
fun add_axioms comp_dnam (eqs : eq list) thy' =
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   177
    let
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   178
      val comp_dname = Sign.full_bname thy' comp_dnam;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   179
      val dnames = map (fst o fst) eqs;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   180
      val x_name = idx_name dnames "x"; 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   181
      fun copy_app dname = %%:(dname^"_copy")`Bound 0;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   182
      val copy_def = ("copy_def" , %%:(comp_dname^"_copy") ==
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   183
                                   /\ "f"(mk_ctuple (map copy_app dnames)));
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   184
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   185
      fun one_con (con,args) = let
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   186
        val nonrec_args = filter_out is_rec args;
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33245
diff changeset
   187
        val    rec_args = filter is_rec args;
31288
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   188
        val    recs_cnt = length rec_args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   189
        val allargs     = nonrec_args @ rec_args
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   190
                          @ map (upd_vname (fn s=> s^"'")) rec_args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   191
        val allvns      = map vname allargs;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   192
        fun vname_arg s arg = if is_rec arg then vname arg^s else vname arg;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   193
        val vns1        = map (vname_arg "" ) args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   194
        val vns2        = map (vname_arg "'") args;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   195
        val allargs_cnt = length nonrec_args + 2*recs_cnt;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   196
        val rec_idxs    = (recs_cnt-1) downto 0;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   197
        val nonlazy_idxs = map snd (filter_out (fn (arg,_) => is_lazy arg)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   198
                                               (allargs~~((allargs_cnt-1) downto 0)));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   199
        fun rel_app i ra = proj (Bound(allargs_cnt+2)) eqs (rec_of ra) $ 
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   200
                                Bound (2*recs_cnt-i) $ Bound (recs_cnt-i);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   201
        val capps =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   202
            List.foldr mk_conj
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   203
                       (mk_conj(
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   204
                        Bound(allargs_cnt+1)===list_ccomb(%%:con,map (bound_arg allvns) vns1),
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   205
                        Bound(allargs_cnt+0)===list_ccomb(%%:con,map (bound_arg allvns) vns2)))
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   206
                       (mapn rel_app 1 rec_args);
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   207
      in List.foldr mk_ex
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   208
                    (Library.foldr mk_conj
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   209
                                   (map (defined o Bound) nonlazy_idxs,capps)) allvns
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   210
      end;
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   211
      fun one_comp n (_,cons) =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   212
          mk_all(x_name(n+1),
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   213
                 mk_all(x_name(n+1)^"'",
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   214
                        mk_imp(proj (Bound 2) eqs n $ Bound 1 $ Bound 0,
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   215
                               foldr1 mk_disj (mk_conj(Bound 1 === UU,Bound 0 === UU)
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   216
                                               ::map one_con cons))));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   217
      val bisim_def =
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   218
          ("bisim_def",
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   219
           %%:(comp_dname^"_bisim")==mk_lam("R", foldr1 mk_conj (mapn one_comp 0 eqs)));
67dff9c5b2bd remove hard tabs, fix indentation
huffman
parents: 31232
diff changeset
   220
          
33245
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   221
      fun add_one (dnam, axs, dfs) =
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   222
          Sign.add_path dnam
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   223
          #> add_defs_infer dfs
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   224
          #> add_axioms_infer axs
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   225
          #> Sign.parent_path;
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   226
33245
65232054ffd0 eliminated some old folds;
wenzelm
parents: 32952
diff changeset
   227
      val thy = fold add_one (mapn (calc_axioms comp_dname eqs) 0 eqs) thy';
31227
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   228
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   229
    in thy |> Sign.add_path comp_dnam  
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   230
           |> add_defs_infer (bisim_def::(if length eqs>1 then [copy_def] else []))
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   231
           |> Sign.parent_path
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   232
           |> fold add_matchers eqs
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   233
    end; (* let (add_axioms) *)
0aa6afd229d3 indentation; export Domain_Axioms.calc_axioms
huffman
parents: 31023
diff changeset
   234
23152
9497234a2743 moved HOLCF tools to canonical place;
wenzelm
parents:
diff changeset
   235
end; (* struct *)