src/Pure/IsaPlanner/term_lib.ML
author wenzelm
Thu, 28 Jul 2005 15:19:49 +0200
changeset 16934 9ef19e3c7fdd
parent 16857 6389511d4609
child 17203 29b2563f5c11
permissions -rw-r--r--
Sign.typ_unify;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     1
(* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- *) 
16179
fa7e70be26b0 header;
wenzelm
parents: 15928
diff changeset
     2
(*  Title:      Pure/IsaPlanner/term_lib.ML
fa7e70be26b0 header;
wenzelm
parents: 15928
diff changeset
     3
    ID:		$Id$
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     4
    Author:     Lucas Dixon, University of Edinburgh
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     5
                lucasd@dai.ed.ac.uk
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     6
    Created:    17 Aug 2002
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     7
*)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     8
(* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- *) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
     9
(*  DESCRIPTION:
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    10
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    11
    Additional code to work with terms.
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    12
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    13
*)   
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    14
(* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    15
signature TERM_LIB =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    16
sig
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    17
    val fo_term_height : Term.term -> int
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    18
    val ho_term_height : Term.term -> int
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    19
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    20
    val current_sign : unit -> Sign.sg
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    21
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    22
    (* Matching/unification with exceptions handled *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    23
    val clean_match : Type.tsig -> Term.term * Term.term 
15915
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
    24
                      -> ((Term.indexname * (Term.sort * Term.typ)) list 
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
    25
                         * (Term.indexname * (Term.typ * Term.term)) list) option
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    26
    val clean_unify : Sign.sg -> int -> Term.term * Term.term 
15915
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
    27
                      -> ((Term.indexname * (Term.sort * Term.typ)) list 
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
    28
                         * (Term.indexname * (Term.typ * Term.term)) list) Seq.seq
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    29
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    30
    (* managing variables in terms, can doing conversions *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    31
    val bounds_to_frees : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    32
    val bounds_to_frees_with_vars :
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    33
       (string * Term.typ) list -> Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    34
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    35
    val change_bounds_to_frees : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    36
    val change_frees_to_vars : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    37
    val change_vars_to_frees : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    38
    val loose_bnds_to_frees :
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    39
       (string * Term.typ) list -> Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    40
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    41
    (* make all variables named uniquely *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    42
    val unique_namify : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    43
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    44
		(* breasking up a term and putting it into a normal form 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    45
       independent of internal term context *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    46
    val cleaned_term_conc : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    47
    val cleaned_term_parts : Term.term -> Term.term list * Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    48
    val cterm_of_term : Term.term -> Thm.cterm
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    49
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    50
    (* terms of theorems and subgoals *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    51
    val term_of_thm : Thm.thm -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    52
    val get_prems_of_sg_term : Term.term -> Term.term list
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    53
    val triv_thm_from_string : string -> Thm.thm
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    54
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    55
    (* some common term manipulations *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    56
    val try_dest_Goal : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    57
    val try_dest_Trueprop : Term.term -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    58
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    59
    val bot_left_leaf_of : Term.term -> Term.term
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
    60
    val bot_left_leaf_noabs_of : Term.term -> Term.term
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    61
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    62
    (* term containing another term - an embedding check *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    63
    val term_contains : Term.term -> Term.term -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    64
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    65
    (* name-convertable checking - like ae-convertable, but allows for
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    66
       var's and free's to be mixed - and doesn't used buggy code. :-) *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    67
		val get_name_eq_member : Term.term -> Term.term list -> Term.term option
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    68
    val name_eq_member : Term.term -> Term.term list -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    69
    val term_name_eq :
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    70
       Term.term ->
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    71
       Term.term ->
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    72
       (Term.term * Term.term) list ->
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
    73
       (Term.term * Term.term) list option
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    74
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    75
     (* is the typ a function or is it atomic *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    76
     val is_fun_typ : Term.typ -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    77
     val is_atomic_typ : Term.typ -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    78
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    79
    (* variable analysis *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    80
    val is_some_kind_of_var : Term.term -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    81
    val same_var_check :
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
    82
       ''a -> ''b -> (''a * ''b) list -> (''a * ''b) list option
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    83
		val has_new_vars : Term.term * Term.term -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    84
    val has_new_typ_vars : Term.term * Term.term -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    85
   (* checks to see if the lhs -> rhs is a invalid rewrite rule *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    86
    val is_not_valid_rwrule : Type.tsig -> (Term.term * Term.term) -> bool
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    87
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    88
    (* get the frees in a term that are of atomic type, ie non-functions *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    89
    val atomic_frees_of_term : Term.term -> (string * Term.typ) list
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    90
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
    91
    (* get used names in a theorem to avoid upon instantiation. *)
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
    92
    val usednames_of_term : Term.term -> string list
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
    93
    val usednames_of_thm : Thm.thm -> string list
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
    94
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    95
    (* Isar term skolemisationm and unsolemisation *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    96
    (* I think this is written also in IsarRTechn and also in somewhere else *)
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
    97
    (* val skolemise_term : (string,Term.typ) list -> Term.term -> Term.term *)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    98
    val unskolemise_all_term : 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
    99
        Term.term -> 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   100
        (((string * Term.typ) * string) list * Term.term)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   101
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   102
    (* given a string describing term then a string for its type, returns 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   103
       read term *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   104
    val readwty : string -> string -> Term.term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   105
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   106
    (* pretty stuff *)
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   107
    val print_term : Term.term -> unit
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   108
    val pretty_print_sort : string list -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   109
    val pretty_print_term : Term.term -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   110
    val pretty_print_type : Term.typ -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   111
    val pretty_print_typelist :
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   112
       Term.typ list -> (Term.typ -> string) -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   113
 
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   114
    (* for debugging: quickly get a string of a term w.r.t the_context() *)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   115
    val string_of_term : Term.term -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   116
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   117
    (* Pretty printing in a way that allows them to be parsed by ML.
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   118
       these are perhaps redundent, check the standard basis 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   119
       lib for generic versions for any datatype? *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   120
    val writesort : string list -> unit
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   121
    val writeterm : Term.term -> unit
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   122
    val writetype : Term.typ -> unit
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   123
  end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   124
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   125
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   126
structure TermLib : TERM_LIB = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   127
struct
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   128
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   129
(* Two kinds of depth measure for HOAS terms, a first order (flat) and a 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   130
   higher order one. 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   131
   Note: not stable of eta-contraction: embedding eta-expands term, 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   132
   thus we assume eta-expanded *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   133
fun fo_term_height (a $ b) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   134
    IsaPLib.max (1 + fo_term_height b, (fo_term_height a))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   135
  | fo_term_height (Abs(_,_,t)) = fo_term_height t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   136
  | fo_term_height _ = 0;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   137
    
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   138
fun ho_term_height  (a $ b) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   139
    1 + (IsaPLib.max (ho_term_height b, ho_term_height a))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   140
  | ho_term_height (Abs(_,_,t)) = ho_term_height t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   141
  | ho_term_height _ = 0;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   142
15928
66b165ee016c lucas - made clean unify smash unifiers so that when we get flex-flex constraints subst does not barf. Also added fix_vars_upto_idx to IsaND.
dixon
parents: 15915
diff changeset
   143
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   144
(* Higher order matching with exception handled *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   145
(* returns optional instantiation *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   146
fun clean_match tsig (a as (pat, t)) = 
15798
016f3be5a5ec Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents: 15570
diff changeset
   147
  let val (tyenv, tenv) = Pattern.match tsig a
15915
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
   148
  in SOME (Vartab.dest tyenv, Vartab.dest tenv)
15798
016f3be5a5ec Adapted to new interface of instantiation and unification / matching functions.
berghofe
parents: 15570
diff changeset
   149
  end handle Pattern.MATCH => NONE;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   150
(* Higher order unification with exception handled, return the instantiations *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   151
(* given Signature, max var index, pat, tgt *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   152
(* returns Seq of instantiations *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   153
fun clean_unify sgn ix (a as (pat, tgt)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   154
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   155
      (* type info will be re-derived, maybe this can be cached 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   156
         for efficiency? *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   157
      val pat_ty = Term.type_of pat;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   158
      val tgt_ty = Term.type_of tgt;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   159
      (* is it OK to ignore the type instantiation info? 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   160
         or should I be using it? *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   161
      val typs_unify = 
16934
9ef19e3c7fdd Sign.typ_unify;
wenzelm
parents: 16857
diff changeset
   162
          SOME (Sign.typ_unify sgn (pat_ty, tgt_ty) (Term.Vartab.empty, ix))
9ef19e3c7fdd Sign.typ_unify;
wenzelm
parents: 16857
diff changeset
   163
            handle Type.TUNIFY => NONE;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   164
    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   165
      case typs_unify of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   166
        SOME (typinsttab, ix2) =>
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   167
        let 
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   168
      (* is it right to throw away the flexes? 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   169
         or should I be using them somehow? *)
15928
66b165ee016c lucas - made clean unify smash unifiers so that when we get flex-flex constraints subst does not barf. Also added fix_vars_upto_idx to IsaND.
dixon
parents: 15915
diff changeset
   170
          fun mk_insts env = 
15915
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
   171
            (Vartab.dest (Envir.type_env env),
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
   172
             Envir.alist_of env);
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   173
          val initenv = Envir.Envir {asol = Vartab.empty, 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   174
                                     iTs = typinsttab, maxidx = ix2};
15928
66b165ee016c lucas - made clean unify smash unifiers so that when we get flex-flex constraints subst does not barf. Also added fix_vars_upto_idx to IsaND.
dixon
parents: 15915
diff changeset
   175
          val useq = (Unify.smash_unifiers (sgn,initenv,[a]))
66b165ee016c lucas - made clean unify smash unifiers so that when we get flex-flex constraints subst does not barf. Also added fix_vars_upto_idx to IsaND.
dixon
parents: 15915
diff changeset
   176
	            handle UnequalLengths => Seq.empty
66b165ee016c lucas - made clean unify smash unifiers so that when we get flex-flex constraints subst does not barf. Also added fix_vars_upto_idx to IsaND.
dixon
parents: 15915
diff changeset
   177
		               | Term.TERM _ => Seq.empty;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   178
          fun clean_unify' useq () = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   179
              (case (Seq.pull useq) of 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   180
                 NONE => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   181
               | SOME (h,t) => SOME (mk_insts h, Seq.make (clean_unify' t)))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   182
	      handle UnequalLengths => NONE
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   183
                   | Term.TERM _ => NONE;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   184
        in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   185
          (Seq.make (clean_unify' useq))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   186
        end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   187
      | NONE => Seq.empty
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   188
    end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   189
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   190
fun asm_mk t = (assume (cterm_of (Theory.sign_of (the_context())) t));
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   191
fun asm_read s = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   192
    (Thm.assume (read_cterm (Theory.sign_of (Context.the_context())) (s,propT)));
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   193
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   194
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   195
(* more pretty printing code for Isabelle terms etc *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   196
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   197
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   198
(* pretty_print_typelist l f = print a typelist. 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   199
   l = list of types to print : typ list
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   200
   f = function used to print a single type : typ -> string
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   201
*)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   202
fun pretty_print_typelist [] f = ""
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   203
  | pretty_print_typelist [(h: typ)] (f : typ -> string) = (f h)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   204
  | pretty_print_typelist ((h: typ) :: t) (f : typ -> string) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   205
      (f h) ^ ", " ^ (pretty_print_typelist t f);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   206
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   207
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   208
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   209
(* pretty_print_sort s = print a sort 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   210
   s = sort to print : string list
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   211
*)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   212
fun pretty_print_sort [] = ""
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   213
  | pretty_print_sort ([h])  = "\"" ^ h ^ "\""
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   214
  | pretty_print_sort (h :: t)  = "\"" ^ h ^ "\"," ^ (pretty_print_sort t);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   215
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   216
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   217
(* pretty_print_type t = print a type
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   218
   t = type to print : type
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   219
*)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   220
fun pretty_print_type (Type (n, l)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   221
      "Type(\"" ^ n ^ "\", [" ^ (pretty_print_typelist l pretty_print_type) ^ "])"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   222
  | pretty_print_type (TFree (n, s)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   223
      "TFree(\"" ^ n ^ "\", [" ^ (pretty_print_sort s) ^ "])"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   224
  | pretty_print_type (TVar ((n, i), s)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   225
      "TVar( (\"" ^ n ^ "\", " ^ (string_of_int i) ^ "), [" ^ (pretty_print_sort s) ^ "])";
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   226
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   227
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   228
(* pretty_print_term t = print a term prints types and sorts too.
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   229
   t = term to print : term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   230
*)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   231
fun pretty_print_term (Const (s, t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   232
      "Const(\"" ^ s ^ "\", " ^ (pretty_print_type t) ^ ")"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   233
  | pretty_print_term (Free (s, t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   234
      "Free(\"" ^ s ^ "\", " ^ (pretty_print_type t) ^ ")"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   235
  | pretty_print_term (Var ((n, i), t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   236
      "Var( (\"" ^ n ^ "\"," ^ (string_of_int i) ^ "), " ^ (pretty_print_type t) ^ ")"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   237
  | pretty_print_term (Bound i) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   238
      "Bound(" ^ (string_of_int i) ^ ")"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   239
  | pretty_print_term (Abs (s, t, r)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   240
      "Abs(\"" ^ s ^ "\"," ^ (pretty_print_type t) ^ ", \n  " ^ (pretty_print_term r) ^ ")"
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   241
  | pretty_print_term (op $ (t1, t2)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   242
      "(" ^ (pretty_print_term t1) ^ ") $\n (" ^ (pretty_print_term t2) ^ ")";
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   243
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   244
(* Write the term out nicly instead of just creating a string for it *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   245
fun writeterm t = writeln (pretty_print_term t);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   246
fun writetype t = writeln (pretty_print_type t);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   247
fun writesort s = writeln (pretty_print_sort s);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   248
15915
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
   249
fun current_sign () = Theory.sign_of (the_context());
b0e8b37642a4 lucas - improved interface to isand.ML and cleaned up clean-unification code, and added some better comments.
dixon
parents: 15814
diff changeset
   250
fun cterm_of_term (t : term) = Thm.cterm_of (current_sign()) t;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   251
fun term_of_thm t = (Thm.prop_of t);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   252
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   253
fun string_of_term t =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   254
  (Sign.string_of_term (current_sign()) t);
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   255
fun print_term t = writeln (string_of_term t);
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   256
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   257
(* create a trivial HOL thm from anything... *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   258
fun triv_thm_from_string s = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   259
  Thm.trivial (cterm_of (current_sign()) (read s));
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   260
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   261
  (* Checks if vars could be the same - alpha convertable
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   262
  w.r.t. previous vars, a and b are assumed to be vars,
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   263
  free vars, but not bound vars,
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   264
  Note frees and vars must all have unique names. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   265
  fun same_var_check a b L =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   266
  let 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   267
    fun bterm_from t [] = NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   268
      | bterm_from t ((a,b)::m) = 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   269
          if t = a then SOME b else bterm_from t m
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   270
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   271
    val bl_opt = bterm_from a L
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   272
  in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   273
		case bterm_from a L of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   274
			NONE => SOME ((a,b)::L)
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   275
		| SOME b2 => if b2 = b then SOME L else NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   276
  end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   277
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   278
  (* FIXME: make more efficient, only require a single new var! *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   279
  (* check if the new term has any meta variables not in the old term *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   280
  fun has_new_vars (old, new) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   281
			(case IsaPLib.lrem (op =) (Term.term_vars old) (Term.term_vars new) of 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   282
				 [] => false
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   283
			 | (_::_) => true);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   284
  (* check if the new term has any meta variables not in the old term *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   285
  fun has_new_typ_vars (old, new) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   286
			(case IsaPLib.lrem (op =) (Term.term_tvars old) (Term.term_tvars new) of 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   287
				 [] => false
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   288
			 | (_::_) => true);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   289
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   290
(* This version avoids name conflicts that might be introduced by
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   291
unskolemisation, and returns a list of (string * Term.typ) * string,
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   292
where the outer string is the original name, and the inner string is
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   293
the new name, and the type is the type of the free variable that was
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   294
renamed. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   295
local
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   296
  fun myadd (n,ty) (L as (renames, names)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   297
      let val n' = Syntax.dest_skolem n in 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   298
        case (Library.find_first (fn (_,n2) => (n2 = n)) renames) of 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   299
          NONE => 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   300
          let val renamedn = Term.variant names n' in 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   301
            (renamedn, (((renamedn, ty), n) :: renames, 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   302
                        renamedn :: names)) end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   303
        | (SOME ((renamedn, _), _)) => (renamedn, L)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   304
      end
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   305
      handle Fail _ => (n, L);
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   306
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   307
  fun unsk (L,f) (t1 $ t2) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   308
      let val (L', t1') = unsk (L, I) t1 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   309
      in unsk (L', (fn x => f (t1' $ x))) t2 end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   310
    | unsk (L,f) (Abs(n,ty,t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   311
      unsk (L, (fn x => Abs(n,ty,x))) t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   312
    | unsk (L, f) (Free (n,ty)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   313
      let val (renamed_n, L') = myadd (n ,ty) L
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   314
       in (L', f (Free (renamed_n, ty))) end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   315
    | unsk (L, f) l = (L, f l);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   316
in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   317
fun unskolemise_all_term t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   318
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   319
      val names = Term.add_term_names (t,[]) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   320
      val ((renames,names'),t') = unsk (([], names),I) t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   321
    in (renames,t') end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   322
end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   323
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   324
(* true if the type t is a function *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   325
fun is_fun_typ (Type(s, l)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   326
    if s = "fun" then true else false
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   327
  | is_fun_typ _ = false;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   328
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   329
val is_atomic_typ = not o is_fun_typ;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   330
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   331
(* get the frees in a term that are of atomic type, ie non-functions *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   332
val atomic_frees_of_term =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   333
     List.filter (is_atomic_typ o snd) 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   334
     o map Term.dest_Free 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   335
     o Term.term_frees;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   336
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   337
fun usednames_of_term t = Term.add_term_names (t,[]);
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   338
fun usednames_of_thm th = 
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   339
    let val rep = Thm.rep_thm th
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   340
      val hyps = #hyps rep
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   341
      val (tpairl,tpairr) = Library.split_list (#tpairs rep)
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   342
      val prop = #prop rep 
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   343
    in
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   344
      List.foldr Term.add_term_names [] (prop :: (tpairl @ (tpairr @ hyps)))
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   345
    end;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   346
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   347
(* read in a string and a top-level type and this will give back a term *) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   348
fun readwty tstr tystr = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   349
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   350
      val sgn = Theory.sign_of (the_context())
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   351
    in
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   352
      Sign.simple_read_term sgn (Sign.read_typ (sgn, K NONE) tystr) tstr
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   353
    end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   354
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   355
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   356
  (* first term is equal to the second in some name convertable
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   357
  way... Note: This differs from the aeconv in the Term.ML file of
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   358
  Isabelle in that it allows a var to be alpha-equiv to a free var. 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   359
  
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   360
  Also, the isabelle term.ML version of aeconv uses a
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   361
  function that it claims doesn't work! *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   362
  fun term_name_eq (Abs(_,ty1,t1)) (Abs(_,ty2,t2)) l = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   363
    if ty1 = ty2 then term_name_eq t1 t2 l
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   364
    else NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   365
  | term_name_eq (ah $ at) (bh $ bt) l =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   366
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   367
      val lopt = (term_name_eq ah bh l)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   368
    in
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   369
      if isSome lopt then 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   370
	      term_name_eq at bt (valOf lopt)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   371
      else
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   372
        NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   373
    end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   374
  | term_name_eq (Const(a,T)) (Const(b,U)) l = 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   375
    if a=b andalso T=U then SOME l
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   376
    else NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   377
  | term_name_eq (a as Free(s1,ty1)) (b as Free(s2,ty2)) l = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   378
    same_var_check a b l
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   379
  | term_name_eq (a as Free(s1,ty1)) (b as Var(n2,ty2)) l = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   380
    same_var_check a b l
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   381
  | term_name_eq (a as Var(n1,ty1)) (b as Free(s2,ty2)) l = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   382
    same_var_check a b l
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   383
  | term_name_eq (a as Var(n1,ty1)) (b as Var(n2,ty2)) l = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   384
    same_var_check a b l
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   385
  | term_name_eq (Bound i) (Bound j) l = 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   386
    if i = j then SOME l else NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   387
  | term_name_eq a b l = ((*writeln ("unchecked case:\n" ^ "a:\n" ^ (pretty_print_term a) ^ "\nb:\n" ^ (pretty_print_term b));*) NONE);
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   388
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   389
 (* checks to see if the term in a name-equivalent member of the list of terms. *)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   390
  fun get_name_eq_member a [] = NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   391
    | get_name_eq_member a (h :: t) = 
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   392
        if isSome (term_name_eq a h []) then SOME h 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   393
				else get_name_eq_member a t;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   394
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   395
  fun name_eq_member a [] = false
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   396
    | name_eq_member a (h :: t) = 
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   397
        if isSome (term_name_eq a h []) then true 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   398
				else name_eq_member a t;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   399
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   400
  (* true if term is a variable *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   401
  fun is_some_kind_of_var (Free(s, ty)) = true
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   402
    | is_some_kind_of_var (Var(i, ty)) = true
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   403
    | is_some_kind_of_var (Bound(i)) = true
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   404
    | is_some_kind_of_var _ = false;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   405
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   406
    (* checks to see if the lhs -> rhs is a invalid rewrite rule *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   407
(* FIXME: we should really check that there is a subterm on the lhs
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   408
which embeds into the rhs, this would be much closer to the normal
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   409
notion of valid wave rule - ie there exists at least one case where it
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   410
is a valid wave rule... *)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   411
	fun is_not_valid_rwrule tysig (lhs, rhs) = 
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   412
      Term.is_Var (Term.head_of lhs) (* if lhs is essentially just a var *)
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   413
      orelse has_new_vars (lhs,rhs) 
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   414
      orelse has_new_typ_vars (lhs,rhs) 
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   415
      orelse Pattern.matches_subterm tysig (lhs, rhs);
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   416
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   417
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   418
  (* first term contains the second in some name convertable way... *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   419
  (* note: this is equivalent to an alpha-convertable emedding *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   420
  (* takes as args: term containing a, term contained b,
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   421
     (bound vars of a, bound vars of b), 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   422
     current alpha-conversion-pairs, 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   423
     returns: bool:can convert, new alpha-conversion table *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   424
  (* in bellow: we *don't* use: a loose notion that only requires
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   425
  variables to match variables, and doesn't worry about the actual
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   426
  pattern in the variables. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   427
  fun term_contains1 (Bs, FVs) (Abs(s,ty,t)) (Abs(s2,ty2,t2)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   428
			if ty = ty2 then 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   429
				term_contains1 ((SOME(s,s2,ty)::Bs), FVs) t t2
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   430
			else []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   431
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   432
  | term_contains1 T t1 (Abs(s2,ty2,t2)) = []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   433
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   434
  | term_contains1 (Bs, FVs) (Abs(s,ty,t)) t2 = 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   435
    term_contains1 (NONE::Bs, FVs) t t2
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   436
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   437
  | term_contains1 T (ah $ at) (bh $ bt) =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   438
    (term_contains1 T ah (bh $ bt)) @ 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   439
    (term_contains1 T at (bh $ bt)) @
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   440
    (List.concat (map (fn inT => (term_contains1 inT at bt)) 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   441
               (term_contains1 T ah bh)))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   442
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   443
  | term_contains1 T a (bh $ bt) = []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   444
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   445
  | term_contains1 T (ah $ at) b =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   446
		(term_contains1 T ah b) @ (term_contains1 T at b)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   447
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   448
  | term_contains1 T a b = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   449
  (* simple list table lookup to check if a named variable has been
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   450
  mapped to a variable, if not adds the mapping and return some new
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   451
  list mapping, if it is then it checks that the pair are mapped to
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   452
  each other, if so returns the current mapping list, else none. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   453
		let 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   454
			fun bterm_from t [] = NONE
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   455
				| bterm_from t ((a,b)::m) = 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   456
					if t = a then SOME b else bterm_from t m
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   457
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   458
  (* check to see if, w.r.t. the variable mapping, two terms are leaf
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   459
  terms and are mapped to each other. Note constants are only mapped
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   460
  to the same constant. *) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   461
			fun same_leaf_check (T as (Bs,FVs)) (Bound i) (Bound j) =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   462
					let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   463
						fun aux_chk (i1,i2) [] = false
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   464
							| aux_chk (0,0) ((SOME _) :: bnds) = true
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   465
							| aux_chk (i1,0) (NONE :: bnds) = false
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   466
							| aux_chk (i1,i2) ((SOME _) :: bnds) =
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   467
								aux_chk (i1 - 1,i2 - 1) bnds
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   468
							| aux_chk (i1,i2) (NONE :: bnds) =
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   469
								aux_chk (i1,i2 - 1) bnds 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   470
					in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   471
						if (aux_chk (i,j) Bs) then [T]
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   472
						else []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   473
					end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   474
				| same_leaf_check (T as (Bs,(Fs,Vs))) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   475
                          (a as (Free (an,aty))) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   476
                          (b as (Free (bn,bty))) =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   477
					(case bterm_from an Fs of 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   478
						 SOME b2n => if bn = b2n then [T]
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   479
												 else [] (* conflict of var name *)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   480
					 | NONE => [(Bs,((an,bn)::Fs,Vs))])
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   481
				| same_leaf_check (T as (Bs,(Fs,Vs))) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   482
                          (a as (Var (an,aty))) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   483
                          (b as (Var (bn,bty))) =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   484
					(case bterm_from an Vs of 
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   485
						 SOME b2n => if bn = b2n then [T]
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   486
												 else [] (* conflict of var name *)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   487
					 | NONE => [(Bs,(Fs,(an,bn)::Vs))])
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   488
				| same_leaf_check T (a as (Const _)) (b as (Const _)) =
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   489
					if a = b then [T] else []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   490
				| same_leaf_check T _ _ = []
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   491
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   492
		in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   493
			same_leaf_check T a b
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   494
		end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   495
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   496
  (* wrapper for term_contains1: checks if the term "a" contains in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   497
  some embedded way, (w.r.t. name -convertable) the term "b" *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   498
  fun term_contains a b = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   499
			case term_contains1 ([],([],[])) a b of
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   500
			  (_ :: _) => true
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   501
			| [] => false;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   502
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   503
  (* change all bound variables to see ones with appropriate name and
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   504
  type *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   505
  (* naming convention is OK as we use 'variant' from term.ML *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   506
  (* Note "bounds_to_frees" defined below, its better and quicker, but
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   507
  keeps the quantifiers handing about, and changes all bounds, not
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   508
  just universally quantified ones. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   509
  fun change_bounds_to_frees t =  
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   510
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   511
      val vars = strip_all_vars t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   512
      val frees_names = map (fn Free(s,n) => s | _ => "") (term_frees t)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   513
      val body = strip_all_body t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   514
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   515
      fun bnds_to_frees [] _ acc = acc
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   516
        | bnds_to_frees ((name,ty)::more) names acc = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   517
            let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   518
	      val new_name = variant names name
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   519
	    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   520
	      bnds_to_frees more (new_name::names) (Free(new_name,ty)::acc)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   521
	    end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   522
    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   523
      (subst_bounds ((bnds_to_frees vars frees_names []), body))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   524
    end; 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   525
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   526
(* a runtime-quick function which makes sure that every variable has a
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   527
unique name *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   528
fun unique_namify_aux (ntab,(Abs(s,ty,t))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   529
    (case (Symtab.lookup (ntab,s)) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   530
       NONE => 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   531
       let 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   532
				 val (ntab2,t2) = unique_namify_aux ((Symtab.update ((s,s),ntab)), t)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   533
       in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   534
				 (ntab2,Abs(s,ty,t2))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   535
       end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   536
     | SOME s2 => 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   537
       let 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   538
				 val s_new = (Term.variant (Symtab.keys ntab) s)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   539
				 val (ntab2,t2) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   540
						 unique_namify_aux ((Symtab.update ((s_new,s_new),ntab)), t)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   541
       in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   542
				 (ntab2,Abs(s_new,ty,t2))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   543
       end)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   544
  | unique_namify_aux (ntab,(a $ b)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   545
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   546
      val (ntab1,t1) = unique_namify_aux (ntab,a)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   547
      val (ntab2,t2) = unique_namify_aux (ntab1,b)		       
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   548
    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   549
      (ntab2, t1$t2)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   550
    end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   551
  | unique_namify_aux (nt as (ntab,Const x)) = nt
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   552
  | unique_namify_aux (nt as (ntab,f as Free (s,ty))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   553
    (case (Symtab.lookup (ntab,s)) of
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   554
       NONE => ((Symtab.update ((s,s),ntab)), f)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   555
     | SOME _ => nt)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   556
  | unique_namify_aux (nt as (ntab,v as Var ((s,i),ty))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   557
    (case (Symtab.lookup (ntab,s)) of
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   558
       NONE => ((Symtab.update ((s,s),ntab)), v)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   559
     | SOME _ => nt)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   560
  | unique_namify_aux (nt as (ntab, Bound i)) = nt;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   561
		
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   562
fun unique_namify t = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   563
    #2 (unique_namify_aux (Symtab.empty, t));
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   564
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   565
(* a runtime-quick function which makes sure that every variable has a
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   566
unique name and also changes bound variables to free variables, used
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   567
for embedding checks, Note that this is a pretty naughty term
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   568
manipulation, which doesn't have necessary relation to the original
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   569
sematics of the term. This is really a trick for our embedding code. *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   570
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   571
fun bounds_to_frees_aux T (ntab,(Abs(s,ty,t))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   572
    (case (Symtab.lookup (ntab,s)) of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   573
      NONE => 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   574
      let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   575
	val (ntab2,t2) = bounds_to_frees_aux ((s,ty)::T)
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   576
				       ((Symtab.update ((s,s),ntab)), t)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   577
      in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   578
	(ntab2,Abs(s,ty,t2))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   579
      end
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   580
    | SOME s2 => 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   581
      let 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   582
	val s_new = (Term.variant (Symtab.keys ntab) s)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   583
	val (ntab2,t2) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   584
	    bounds_to_frees_aux ((s_new,ty)::T) 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   585
			  (Symtab.update (((s_new,s_new),ntab)), t)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   586
      in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   587
	(ntab2,Abs(s_new,ty,t2))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   588
      end)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   589
  | bounds_to_frees_aux T (ntab,(a $ b)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   590
    let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   591
      val (ntab1,t1) = bounds_to_frees_aux T (ntab,a)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   592
      val (ntab2,t2) = bounds_to_frees_aux T (ntab1,b)		       
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   593
    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   594
      (ntab2, t1$t2)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   595
    end
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   596
  | bounds_to_frees_aux T (nt as (ntab,Const x)) = nt
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   597
  | bounds_to_frees_aux T (nt as (ntab,f as Free (s,ty))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   598
    (case (Symtab.lookup (ntab,s)) of
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   599
      NONE => ((Symtab.update ((s,s),ntab)), f)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   600
    | SOME _ => nt)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   601
  | bounds_to_frees_aux T (nt as (ntab,v as Var ((s,i),ty))) = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   602
     (case (Symtab.lookup (ntab,s)) of
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   603
      NONE => ((Symtab.update ((s,s),ntab)), v)
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15481
diff changeset
   604
    | SOME _ => nt)
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   605
  | bounds_to_frees_aux T (nt as (ntab, Bound i)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   606
    let 
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   607
      val (s,ty) = List.nth (T,i) 
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   608
    in
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   609
      (ntab, Free (s,ty))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   610
    end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   611
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   612
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   613
fun bounds_to_frees t = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   614
    #2 (bounds_to_frees_aux [] (Symtab.empty,t));
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   615
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   616
fun bounds_to_frees_with_vars vars t = 
16857
6389511d4609 lucas - slightly cleaned up. Removed redudent copy of Symtab structure.
dixon
parents: 16179
diff changeset
   617
    #2 (bounds_to_frees_aux vars (Symtab.empty,t));
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   618
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   619
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   620
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   621
(* loose bounds to frees *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   622
fun loose_bnds_to_frees_aux (bnds,vars) (Abs(s,ty,t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   623
    Abs(s,ty,loose_bnds_to_frees_aux (bnds + 1,vars) t)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   624
  | loose_bnds_to_frees_aux (bnds,vars) (a $ b) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   625
    (loose_bnds_to_frees_aux (bnds,vars) a) 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   626
      $ (loose_bnds_to_frees_aux (bnds,vars) b)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   627
  | loose_bnds_to_frees_aux (bnds,vars) (t as (Bound i)) = 
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   628
    if (bnds <= i) then Free (List.nth (vars,i - bnds))
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   629
    else t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   630
  | loose_bnds_to_frees_aux (bnds,vars) t = t;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   631
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   632
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   633
fun loose_bnds_to_frees vars t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   634
    loose_bnds_to_frees_aux (0,vars) t;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   635
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   636
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   637
  fun try_dest_Goal (Const("Goal", _) $ T) = T
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   638
    | try_dest_Goal T = T;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   639
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   640
  fun try_dest_Trueprop (Const("Trueprop", _) $ T) = T
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   641
    | try_dest_Trueprop T = T; 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   642
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   643
  fun bot_left_leaf_of (l $ r) = bot_left_leaf_of l
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   644
    | bot_left_leaf_of (Abs(s,ty,t)) = bot_left_leaf_of t
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   645
    | bot_left_leaf_of x = x;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   646
15814
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   647
  fun bot_left_leaf_noabs_of (l $ r) = bot_left_leaf_noabs_of l
d65f461c8672 lucas - fixed a big with renaming of bound variables. Other small changes.
dixon
parents: 15798
diff changeset
   648
    | bot_left_leaf_noabs_of x = x;
15481
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   649
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   650
(* cleaned up normal form version of the subgoal terms conclusion *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   651
fun cleaned_term_conc t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   652
    let
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   653
      val concl = Logic.strip_imp_concl (change_bounds_to_frees t)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   654
    in 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   655
      (try_dest_Trueprop (try_dest_Goal concl))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   656
    end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   657
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   658
(*   fun get_prems_of_sg_term t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   659
			map opt_dest_Trueprop (Logic.strip_imp_prems t); *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   660
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   661
fun get_prems_of_sg_term t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   662
		map try_dest_Trueprop (Logic.strip_assums_hyp t);
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   663
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   664
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   665
(* drop premices, clean bound var stuff, and make a trueprop... *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   666
  fun cleaned_term_parts t = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   667
      let 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   668
				val t2 = (change_bounds_to_frees t)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   669
        val concl = Logic.strip_imp_concl t2
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   670
				val prems = map try_dest_Trueprop (Logic.strip_imp_prems t2)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   671
      in 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   672
				(prems, (try_dest_Trueprop (try_dest_Goal concl)))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   673
      end;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   674
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   675
  (* change free variables to vars and visa versa *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   676
  (* *** check naming is OK, can we just use the vasr old name? *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   677
  (* *** Check: Logic.varify and Logic.unvarify *)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   678
  fun change_vars_to_frees (a$b) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   679
        (change_vars_to_frees a) $ (change_vars_to_frees b)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   680
    | change_vars_to_frees (Abs(s,ty,t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   681
        (Abs(s,Type.varifyT ty,change_vars_to_frees t))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   682
    | change_vars_to_frees (Var((s,i),ty)) = (Free(s,Type.unvarifyT ty))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   683
    | change_vars_to_frees l = l;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   684
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   685
  fun change_frees_to_vars (a$b) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   686
        (change_frees_to_vars a) $ (change_frees_to_vars b)
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   687
    | change_frees_to_vars (Abs(s,ty,t)) = 
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   688
        (Abs(s,Type.varifyT ty,change_frees_to_vars t))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   689
    | change_frees_to_vars (Free(s,ty)) = (Var((s,0),Type.varifyT ty))
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   690
    | change_frees_to_vars l = l;
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   691
fc075ae929e4 the new subst tactic, by Lucas Dixon
paulson
parents:
diff changeset
   692
16934
9ef19e3c7fdd Sign.typ_unify;
wenzelm
parents: 16857
diff changeset
   693
end;