src/Tools/isac/CalcElements/termC.sml
author Walther Neuper <walther.neuper@jku.at>
Thu, 26 Mar 2020 16:17:21 +0100
changeset 59841 aeeec4898fd1
parent 59817 d6e010ed88ab
child 59842 ebe2a3c21cef
permissions -rw-r--r--
improve classification of assumptions (True, False, indeterminate)
neuper@38025
     1
(* Title: extends Isabelle/src/Pure/term.ML
e0726734@41962
     2
   Author: Walther Neuper 1999, Mathias Lehnfeld
neuper@38025
     3
   (c) due to copyright terms
neuper@38025
     4
*)
wneuper@59507
     5
infix contains_one_of
wneuper@59507
     6
wneuper@59577
     7
(* TERM_C extends Isabelle's naming conventions: "C" indicates Isac add-ons to an Isabelle module *)
wneuper@59577
     8
signature TERM_C =
wneuper@59389
     9
  sig
walther@59767
    10
    datatype lrd = D | L | R
walther@59767
    11
    type path
walther@59774
    12
    val string_of_path: path -> string
walther@59768
    13
    val at_location: path -> term -> term
walther@59768
    14
    val go_up: path -> term -> term
walther@59767
    15
wneuper@59389
    16
    val contains_Var: term -> bool
wneuper@59389
    17
    val dest_binop_typ: typ -> typ * typ * typ
wneuper@59395
    18
    val dest_equals: term -> term * term
wneuper@59389
    19
    val free2str: term -> string
wneuper@59389
    20
    val ids2str: term -> string list
wneuper@59389
    21
    val ins_concl: term -> term -> term
wneuper@59393
    22
    val inst_abs: term -> term
wneuper@59389
    23
    val inst_bdv: (term * term) list -> term -> term
wneuper@59390
    24
 
wneuper@59392
    25
    val term_of_num: typ -> int -> term
wneuper@59395
    26
    val num_of_term: term -> int
wneuper@59395
    27
    val int_of_str_opt: string -> int option
wneuper@59395
    28
    val int_of_str: string -> int
wneuper@59392
    29
    val isastr_of_int: int -> string
wneuper@59390
    30
wneuper@59389
    31
    val isalist2list: term -> term list
wneuper@59390
    32
    val list2isalist: typ -> term list -> term
wneuper@59492
    33
    val isapair2pair: term -> term * term (* rename to dest_pair, compare HOLogic.dest_string *)
wneuper@59390
    34
 
wneuper@59389
    35
    val is_atom: term -> bool
walther@59841
    36
    val is_const: term -> bool
walther@59841
    37
    val is_variable: term -> bool
wneuper@59389
    38
    val is_bdv: string -> bool
wneuper@59389
    39
    val is_bdv_subst: term -> bool
walther@59636
    40
    val guess_bdv_typ: term -> typ
wneuper@59389
    41
    val is_equality: term -> bool
wneuper@59389
    42
    val is_expliceq: term -> bool
wneuper@59389
    43
    val is_f_x: term -> bool
wneuper@59389
    44
    val is_list: term -> bool
wneuper@59389
    45
    val is_num: term -> bool
wneuper@59395
    46
    val is_num': string -> bool
walther@59841
    47
    val variable_constant_pair: term * term -> bool
wneuper@59390
    48
wneuper@59389
    49
    val mk_add: term -> term -> term
wneuper@59389
    50
    val mk_free: typ -> string -> term
wneuper@59389
    51
    val mk_equality: term * term -> term
wneuper@59389
    52
    val mk_factroot: string -> typ -> int -> int -> term
wneuper@59389
    53
    val mk_Free: string * typ -> term
wneuper@59392
    54
    val mk_thmid: string -> string -> string -> string
wneuper@59395
    55
    val mk_num_op_num: typ -> typ -> string * typ -> int -> int -> term
wneuper@59395
    56
    val mk_num_op_var: term -> string -> typ -> typ -> int -> term
wneuper@59395
    57
    val mk_var_op_num: term -> string -> typ -> typ -> int -> term
wneuper@59390
    58
wneuper@59390
    59
    val matches: theory -> term -> term -> bool
wneuper@59389
    60
    val parse: theory -> string -> cterm option
wneuper@59389
    61
    val parseN: theory -> string -> cterm option
wneuper@59389
    62
    val parseNEW: Proof.context -> string -> term option
wneuper@59582
    63
    val parseNEW': Proof.context -> string -> term
wneuper@59389
    64
    val parseold: theory -> string -> cterm option
wneuper@59389
    65
    val parse_patt: theory -> string -> term
wneuper@59389
    66
    val perm: term -> term -> bool
wneuper@59390
    67
wneuper@59389
    68
    val str_of_free_opt: term -> string option
wneuper@59389
    69
    val str_of_int: int -> string
wneuper@59389
    70
    val str2term: string -> term
wneuper@59389
    71
    val strip_imp_prems': term -> term option
wneuper@59389
    72
    val subst_atomic_all: (term * term) list -> term -> bool * term
wneuper@59389
    73
    val term_detail2str: term -> string
wneuper@59390
    74
wneuper@59390
    75
    val pairt: term -> term -> term
wneuper@59390
    76
    val pairT: typ -> typ -> typ
wneuper@59580
    77
    val raise_type_conflicts: term list -> unit
wneuper@59390
    78
    val strip_trueprop: term -> term
wneuper@59390
    79
wneuper@59402
    80
    val num_str: thm -> thm
wneuper@59550
    81
    val numbers_to_string: term -> term
wneuper@59389
    82
    val uminus_to_string: term -> term
wneuper@59389
    83
    val var2free: term -> term
wneuper@59582
    84
    val vars: term -> term list  (* recognises numverals, should replace "fun vars_of" *)
wneuper@59582
    85
    val vars_of: term -> term list
wneuper@59582
    86
    val dest_list': term -> term list
wneuper@59532
    87
wneuper@59389
    88
(* ---- for tests only: shifted from below to remove the Warning "unused" at fun.def. --------- *)
wneuper@59399
    89
    val scala_of_term: term -> string
wneuper@59392
    90
    val atomtyp(*<-- atom_typ TODO*): typ -> unit
wneuper@59392
    91
    val atomty: term -> unit
wneuper@59392
    92
    val atomw: term -> unit
walther@59817
    93
    val atomt: term -> unit
wneuper@59392
    94
    val atomwy: term -> unit
wneuper@59416
    95
    val atomty_thy: Rule.thyID -> term -> unit
wneuper@59392
    96
    val free2var: term -> term
wneuper@59507
    97
    val contains_one_of: thm * (string * typ) list -> bool
walther@59716
    98
    val contains_Const_typeless: term list -> term -> bool
walther@59785
    99
(*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\* )
wneuper@59389
   100
    val typ_a2real: term -> term
walther@59785
   101
( *\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
wneuper@59389
   102
  end
wneuper@59389
   103
wneuper@59389
   104
(**)
wneuper@59577
   105
structure TermC(**): TERM_C(**) =
wneuper@59389
   106
struct
wneuper@59389
   107
(**)
neuper@38025
   108
walther@59767
   109
datatype lrd = L (*t1 in "t1$t2"*)
walther@59767
   110
             | R (*t2 in "t1$t2"*) | D; (*b in Abs(_,_,b*)
walther@59767
   111
type path = lrd list; 
walther@59767
   112
fun ldr2str L = "L"
walther@59767
   113
  | ldr2str R = "R"
walther@59767
   114
  | ldr2str D = "D";
walther@59774
   115
fun string_of_path k = (strs2str' o (map ldr2str)) k;
walther@59768
   116
(*go to a location in a term and fetch the resective sub-term*)
walther@59768
   117
fun at_location [] t = t
walther@59770
   118
  | at_location (D :: p) (Abs(_, _, body)) = at_location p body
walther@59768
   119
  | at_location (L :: p) (t1 $ _) = at_location p t1
walther@59768
   120
  | at_location (R :: p) (_ $ t2) = at_location p t2
walther@59774
   121
  | at_location l t = raise TERM ("at_location: no " ^ string_of_path l ^ " for ", [t]);
walther@59768
   122
fun go_up l t =
walther@59768
   123
  if length l > 1 then at_location (drop_last l) t else raise ERROR ("go_up [] " ^ Rule.term2str t)
walther@59767
   124
neuper@52087
   125
fun isastr_of_int i = if i >= 0 then string_of_int i else "-" ^ string_of_int (abs i)
neuper@52087
   126
neuper@38025
   127
fun matches thy tm pa = 
neuper@38025
   128
    (Pattern.match thy (pa, tm) (Vartab.empty, Vartab.empty); true)
wneuper@59392
   129
    handle Pattern.MATCH => false
neuper@38025
   130
wneuper@59392
   131
(** transform  typ / term to a String to be parsed by Scala after transport via libisabelle **)
wneuper@59392
   132
wneuper@59318
   133
fun scala_of_typ (Type (s, typs)) =
wneuper@59318
   134
    enclose "Type(" ")" (quote s ^ ", " ^
wneuper@59318
   135
      (typs |> map scala_of_typ |> commas |> enclose "List(" ")"))
wneuper@59318
   136
  | scala_of_typ (TFree (s, sort)) =
wneuper@59318
   137
    enclose "TFree(" ")" (quote s ^ ", " ^ (sort |> map quote |> commas |> enclose "List(" ")"))
wneuper@59318
   138
  | scala_of_typ (TVar ((s, i), sort)) =
wneuper@59318
   139
    enclose "TVar(" ")" (
wneuper@59318
   140
      enclose "(" ")," (quote s ^ "," ^ quote (string_of_int i)) ^ 
wneuper@59318
   141
      (sort |> map quote |> commas |> enclose "List(" ")"))
wneuper@59318
   142
fun scala_of_term (Const (s, T)) =
wneuper@59318
   143
    enclose "Const(" ")" (quote s ^ ", " ^ scala_of_typ T)
wneuper@59318
   144
  | scala_of_term (Free (s, T)) =
wneuper@59318
   145
    enclose "Free(" ")" (quote s ^ ", " ^ scala_of_typ T)
wneuper@59318
   146
  | scala_of_term (Var ((s, i), T)) =
wneuper@59318
   147
    enclose "TVar(" ")" (
wneuper@59318
   148
      enclose "(" ")," (quote s ^ "," ^ quote (string_of_int i)) ^ 
wneuper@59318
   149
      scala_of_typ T)
wneuper@59318
   150
  | scala_of_term (Bound i) = enclose "Bound(" ")" (string_of_int i)
wneuper@59318
   151
  | scala_of_term (Abs (s, T, t)) =
wneuper@59318
   152
    enclose "Abs(" ")" (
wneuper@59318
   153
      quote s ^ ", " ^
wneuper@59318
   154
      scala_of_typ T ^ ", " ^
wneuper@59318
   155
      scala_of_term t)
wneuper@59318
   156
  | scala_of_term (t1 $ t2) =
wneuper@59318
   157
    enclose "App(" ")" (scala_of_term t1 ^ ", " ^ scala_of_term t2)
wneuper@59318
   158
wneuper@59392
   159
(* see structure's bare bones.
wneuper@59392
   160
   for Isabelle standard output compare 2017 "structure ML_PP" *)
wneuper@59392
   161
fun atomtyp t =
neuper@38025
   162
  let
wneuper@59392
   163
    fun ato n (Type (s, [])) = "\n*** " ^ indent n ^ "Type (" ^ s ^",[])"
wneuper@59392
   164
      | ato n (Type (s, Ts)) = "\n*** " ^ indent n ^ "Type (" ^ s ^ ",[" ^ atol (n + 1) Ts
wneuper@59392
   165
      | ato n (TFree (s, sort)) = "\n*** " ^ indent n ^ "TFree (" ^ s ^ "," ^ strs2str' sort
wneuper@59392
   166
      | ato n (TVar ((s, i), sort)) =
wneuper@59392
   167
        "\n*** " ^ indent n ^ "TVar ((" ^ s ^ "," ^ string_of_int i ^ strs2str' sort
wneuper@59392
   168
    and atol n [] = "\n*** " ^ indent n ^ "]"
wneuper@59392
   169
      | atol n (T :: Ts) = (ato n T ^ atol n Ts)
neuper@38048
   170
in tracing (ato 0 t ^ "\n") end;
neuper@38025
   171
neuper@38067
   172
local 
wneuper@59392
   173
  fun ato (Const (a, _)) n = "\n*** " ^ indent n ^ "Const (" ^ a ^ ", _)"
wneuper@59392
   174
	  | ato (Free (a, _)) n = "\n*** " ^ indent n ^ "Free (" ^ a ^ ", _)"
neuper@38025
   175
	  | ato (Var ((a, i), _)) n =
wneuper@59392
   176
	    "\n*** " ^ indent n ^ "Var (" ^ a ^ ", " ^ string_of_int i ^ "), _)"
wneuper@59392
   177
	  | ato (Bound i) n = "\n*** " ^ indent n ^ "Bound " ^ string_of_int i
wneuper@59392
   178
	  | ato (Abs (a, _, body)) n = "\n*** " ^ indent n ^ "Abs(" ^ a ^ ", _" ^ ato body (n+1)
neuper@38025
   179
	  | ato (f $ t) n = (ato f n ^ ato t (n + 1))
neuper@38067
   180
in
wneuper@59392
   181
  fun atomw t = writeln ("\n*** -------------" ^ ato t 0 ^ "\n***");
wneuper@59392
   182
  fun atomt t = tracing ("\n*** -------------" ^ ato t 0 ^ "\n***");
neuper@38067
   183
end;
neuper@38025
   184
neuper@38025
   185
fun term_detail2str t =
wneuper@59392
   186
  let 
wneuper@59416
   187
    fun ato (Const (a, T)) n = "\n*** " ^ indent n ^ "Const (" ^ a ^ ", " ^ Rule.string_of_typ T ^ ")"
wneuper@59416
   188
      | ato (Free (a, T)) n = "\n*** " ^ indent n ^ "Free (" ^ a ^ ", " ^ Rule.string_of_typ T ^ ")"
wneuper@59392
   189
      | ato (Var ((a, i), T)) n =
wneuper@59416
   190
        "\n*** " ^ indent n ^ "Var ((" ^ a ^ ", " ^ string_of_int i ^ "), " ^ Rule.string_of_typ T ^ ")"
wneuper@59392
   191
      | ato (Bound i) n = "\n*** " ^ indent n ^ "Bound " ^ string_of_int i
wneuper@59392
   192
      | ato (Abs(a, T, body))  n = 
wneuper@59416
   193
        "\n*** " ^ indent n ^ "Abs (" ^ a ^ ", " ^ Rule.string_of_typ T ^ ",.." ^ ato body (n + 1)
wneuper@59392
   194
      | ato (f $ t) n = ato f n ^ ato t (n + 1)
wneuper@59392
   195
  in "\n*** " ^ ato t 0 ^ "\n***" end;
neuper@42376
   196
fun term_detail2str_thy thy t =
wneuper@59392
   197
  let
wneuper@59392
   198
    fun ato (Const (a, T)) n =
wneuper@59416
   199
        "\n*** " ^ indent n ^ "Const (" ^ a ^ ", " ^ Rule.string_of_typ_thy thy T ^ ")"
wneuper@59392
   200
  	  | ato (Free (a, T)) n =
wneuper@59416
   201
  	     "\n*** " ^ indent n ^ "Free (" ^ a ^ ", " ^ Rule.string_of_typ_thy thy T ^ ")"
wneuper@59392
   202
  	  | ato (Var ((a, i), T)) n =
wneuper@59392
   203
  	    "\n*** " ^ indent n ^ "Var ((" ^ a ^ ", " ^ string_of_int i ^ "), " ^
wneuper@59416
   204
  	    Rule.string_of_typ_thy thy T ^ ")"
wneuper@59392
   205
  	  | ato (Bound i) n = 
wneuper@59392
   206
  	    "\n*** " ^ indent n ^ "Bound " ^ string_of_int i
wneuper@59392
   207
  	  | ato (Abs(a, T, body))  n = 
wneuper@59416
   208
  	    "\n*** " ^ indent n ^ "Abs (" ^ a ^ ", " ^ Rule.string_of_typ_thy thy T ^ ",.." ^
wneuper@59392
   209
  	    ato body (n + 1)
wneuper@59392
   210
  	  | ato (f $ t) n = ato f n ^ ato t (n + 1)
wneuper@59392
   211
  in "\n*** " ^ ato t 0 ^ "\n***" end;
neuper@38067
   212
fun atomwy t = (writeln o term_detail2str) t;
neuper@38067
   213
fun atomty t = (tracing o term_detail2str) t;
neuper@42376
   214
fun atomty_thy thy t = (tracing o (term_detail2str_thy thy)) t;
neuper@38025
   215
wneuper@59392
   216
(* contains the term a VAR(("*",_),_) ? *)
neuper@38025
   217
fun contains_Var (Abs(_,_,body)) = contains_Var body
neuper@38025
   218
  | contains_Var (f $ f') = contains_Var f orelse contains_Var f'
neuper@38025
   219
  | contains_Var (Var _) = true
neuper@38025
   220
  | contains_Var _ = false;
neuper@38025
   221
wneuper@59392
   222
fun str_of_int n = 
wneuper@59392
   223
  if n < 0 then "-" ^ ((string_of_int o abs) n)
wneuper@59392
   224
  else string_of_int n;
wneuper@59457
   225
val int_of_str = Value.parse_int;
wneuper@59392
   226
fun int_of_str_opt str = 
wneuper@59390
   227
  let
wneuper@59390
   228
    val ss = Symbol.explode str
wneuper@59392
   229
    val ss' = case ss of "(" :: s => drop_last s | _ => ss
wneuper@59392
   230
    val (sign, istr) = case ss' of "-" :: istr => (~1, istr) | _ => (1, ss')
wneuper@59392
   231
  in
wneuper@59392
   232
    case Library.read_int istr of (i, []) => SOME (sign * i) | _ => NONE
wneuper@59392
   233
  end;
wneuper@59392
   234
fun is_num' str = case int_of_str_opt str of SOME _ => true | NONE => false;
wneuper@59392
   235
fun is_num (Free (s, _)) = if is_num' s then true else false | is_num _ = false;
wneuper@59392
   236
fun term_of_num ntyp n = Free (str_of_int n, ntyp);
wneuper@59392
   237
fun num_of_term (t as (Free (istr, _))) = 
wneuper@59392
   238
    (case int_of_str_opt istr of SOME i => i | NONE => raise TERM ("num_of_term: NOT int ", [t]))
wneuper@59392
   239
  | num_of_term t = raise TERM ("num_of_term: NOT Free ", [t])
neuper@52064
   240
walther@59841
   241
fun is_const (Const _) = true | is_const _ = false;
walther@59841
   242
fun is_variable (t as Free _) = not (is_num t)
walther@59841
   243
  | is_variable _ = false;
wneuper@59392
   244
fun is_Free (Free _) = true | is_Free _ = false;
neuper@38025
   245
fun is_fun_id (Const _) = true
neuper@38025
   246
  | is_fun_id (Free _) = true
neuper@38025
   247
  | is_fun_id _ = false;
neuper@38025
   248
fun is_f_x (f $ x) = is_fun_id f andalso is_Free x
neuper@38025
   249
  | is_f_x _ = false;
walther@59841
   250
(* precondition: TermC.is_atom v andalso TermC.is_atom c *)
walther@59841
   251
fun variable_constant_pair (v, c) =
walther@59841
   252
  if (is_variable v andalso (is_const c orelse is_num c)) orelse
walther@59841
   253
     (is_variable c andalso (is_const v orelse is_num v))
walther@59841
   254
  then true
walther@59841
   255
  else false
wneuper@59392
   256
wneuper@59392
   257
fun vars t =
neuper@38025
   258
  let
wneuper@59392
   259
    fun scan vs (Const _) = vs
wneuper@59392
   260
      | scan vs (t as Free (s, _)) = if is_num' s then vs else t :: vs
wneuper@59392
   261
      | scan vs (t as Var _) = t :: vs
wneuper@59392
   262
      | scan vs (Bound _) = vs 
wneuper@59392
   263
      | scan vs (Abs (_, _, t)) = scan vs t
neuper@38025
   264
      | scan vs (t1 $ t2) = (scan vs t1) @ (scan vs t2)
neuper@38025
   265
  in (distinct o (scan [])) t end;
wneuper@59392
   266
(* bypass Isabelle's Pretty, which requires ctxt *)
neuper@38025
   267
fun ids2str t =
neuper@38025
   268
  let
wneuper@59392
   269
    fun scan vs (Const (s, _)) = if is_num' s then vs else s :: vs
wneuper@59392
   270
      | scan vs (Free (s, _)) = if is_num' s then vs else s :: vs
wneuper@59392
   271
      | scan vs (Var ((s, i), _)) = (s ^ "_" ^ string_of_int i) :: vs
wneuper@59392
   272
      | scan vs (Bound _) = vs 
wneuper@59392
   273
      | scan vs (Abs (s, _, t)) = scan (s :: vs) t
neuper@38025
   274
      | scan vs (t1 $ t2) = (scan vs t1) @ (scan vs t2)
neuper@38025
   275
  in (distinct o (scan [])) t end;
wneuper@59392
   276
fun is_bdv str = case Symbol.explode str of "b"::"d"::"v"::_ => true | _ => false;
wneuper@59394
   277
(* instantiate #prop thm with bound variables (as Free) *)
wneuper@59394
   278
fun inst_bdv [] t = t
wneuper@59394
   279
  | inst_bdv (instl: (term*term) list) t =
wneuper@59394
   280
    let
wneuper@59394
   281
      fun subst (v as Var((s, _), T)) = 
wneuper@59394
   282
          (case Symbol.explode s of
wneuper@59394
   283
            "b"::"d"::"v"::_ => if_none (assoc(instl,Free(s,T))) (Free(s,T))
wneuper@59394
   284
          | _ => v)
wneuper@59394
   285
        | subst (Abs(a, T, body)) = Abs(a, T, subst body)
wneuper@59394
   286
        | subst (f $ t') = subst f $ subst t'
wneuper@59394
   287
        | subst t = if_none (assoc (instl, t)) t
wneuper@59394
   288
    in  subst t  end;
neuper@38025
   289
wneuper@59494
   290
(* is a term a substitution for a bdv as found in programs and tactics *)
neuper@42426
   291
fun is_bdv_subst (Const ("List.list.Cons", _) $
wneuper@59494
   292
      (Const ("Product_Type.Pair", _) $ str $ _) $ _) = is_bdv (HOLogic.dest_string str)
neuper@42426
   293
  | is_bdv_subst _ = false;
neuper@42426
   294
walther@59636
   295
(* this shall be improved due to future requirements *)
walther@59636
   296
fun guess_bdv_typ t = t |> vars |> hd |> type_of
walther@59636
   297
wneuper@59392
   298
fun free2str (Free (s, _)) = s
wneuper@59416
   299
  | free2str t = error ("free2str not for " ^ Rule.term2str t);
wneuper@59392
   300
fun str_of_free_opt (Free (s, _)) = SOME s
neuper@52103
   301
  | str_of_free_opt _ = NONE
neuper@38025
   302
wneuper@59392
   303
(* compare Logic.unvarify_global, which rejects Free *)
wneuper@59392
   304
fun var2free (t as Const _) = t
wneuper@59392
   305
  | var2free (t as Free _) = t
wneuper@59392
   306
  | var2free (Var((s, _), T)) = Free (s,T)
wneuper@59392
   307
  | var2free (t as Bound _) = t 
wneuper@59392
   308
  | var2free (Abs(s, T, t)) = Abs(s, T, var2free t)
neuper@38025
   309
  | var2free (t1 $ t2) = (var2free t1) $ (var2free t2);
neuper@38025
   310
  
wneuper@59392
   311
(* Logic.varify does NOT take care of 'Free ("1", _)'*)
wneuper@59392
   312
fun free2var (t as Const _) = t
wneuper@59390
   313
  | free2var (t as Free (s, T)) = if is_num' s then t else Var ((s, 0), T)
wneuper@59392
   314
  | free2var (t as Var _) = t
wneuper@59392
   315
  | free2var (t as Bound _) = t 
neuper@38025
   316
  | free2var (Abs (s, T, t)) = Abs (s, T, free2var t)
neuper@38025
   317
  | free2var (t1 $ t2) = (free2var t1) $ (free2var t2);
neuper@38025
   318
neuper@38025
   319
fun mk_listT T = Type ("List.list", [T]);
wneuper@59392
   320
fun list_const T = Const ("List.list.Cons", [T, mk_listT T] ---> mk_listT T);
wneuper@59392
   321
fun list2isalist T [] = Const ("List.list.Nil", mk_listT T)
wneuper@59392
   322
  | list2isalist T (t :: ts) = (list_const T) $ t $ (list2isalist T ts);
neuper@38025
   323
wneuper@59392
   324
fun isapair2pair (Const ("Product_Type.Pair",_) $ a $ b) = (a, b)
neuper@38025
   325
  | isapair2pair t = 
wneuper@59416
   326
    error ("isapair2pair called with " ^ Rule.term2str t);
neuper@38025
   327
fun isalist2list ls =
neuper@38025
   328
  let
wneuper@59392
   329
    fun get es (Const("List.list.Cons", _) $ t $ ls) = get (t :: es) ls
wneuper@59392
   330
      | get es (Const("List.list.Nil", _)) = es
wneuper@59403
   331
      | get _ t = raise TERM ("isalist2list applied to NON-list: ", [t])
neuper@38025
   332
  in (rev o (get [])) ls end;
neuper@38025
   333
wneuper@59392
   334
fun is_list ((Const ("List.list.Cons", _)) $ _ $ _) = true
wneuper@59392
   335
  | is_list _ = false;
wneuper@59392
   336
fun dest_binop_typ (Type ("fun", [range, Type ("fun", [arg2, arg1])])) = (arg1, arg2, range)
wneuper@59392
   337
  | dest_binop_typ _ = raise ERROR "dest_binop_typ: not binary";
wneuper@59392
   338
fun dest_equals (Const("HOL.eq", _) $ t $ u)  =  (t, u) (* Pure/logic.ML: Const ("==", ..*)
wneuper@59390
   339
  | dest_equals t = raise TERM ("dest_equals'", [t]);
wneuper@59390
   340
fun is_equality (Const("HOL.eq",_) $ _ $ _)  =  true  (* logic.ML: Const("=="*)
neuper@38025
   341
  | is_equality _ = false;
wneuper@59392
   342
fun mk_equality (t, u) = (Const("HOL.eq", [type_of t, type_of u] ---> HOLogic.boolT) $ t $ u); 
wneuper@59390
   343
fun is_expliceq (Const("HOL.eq",_) $ (Free _) $ _)  =  true
neuper@38025
   344
  | is_expliceq _ = false;
wneuper@59390
   345
fun strip_trueprop (Const ("HOL.Trueprop", _) $ t) = t
neuper@38025
   346
  | strip_trueprop t = t;
neuper@38025
   347
wneuper@59392
   348
(* (A1==>...An==>B) goes to (A1==>...An==>)   Pure/logic.ML: term -> term list*)
wneuper@59403
   349
fun strip_imp_prems' (Const ("Pure.imp", _) $ A $ t) = 
wneuper@59392
   350
    let
wneuper@59403
   351
      fun coll_prems As (Const("Pure.imp", _) $ A $ t) = 
wneuper@59392
   352
          coll_prems (As $ (Logic.implies $ A)) t
wneuper@59392
   353
        | coll_prems As _ = SOME As
neuper@38025
   354
    in coll_prems (Logic.implies $ A) t end
wneuper@59392
   355
  | strip_imp_prems' _ = NONE;  (* *)
neuper@38025
   356
wneuper@59392
   357
(* (A1==>...An==>) (B) goes to (A1==>...An==>B), where B is lowest branch, 2002 Pure/thm.ML *)
wneuper@59403
   358
fun ins_concl (Const ("Pure.imp", _) $ A $ t) B = Logic.implies $ A $ (ins_concl t B)
wneuper@59403
   359
  | ins_concl (Const ("Pure.imp", _) $ A    ) B = Logic.implies $ A $ B
wneuper@59390
   360
  | ins_concl t B =  raise TERM ("ins_concl", [t, B]);
neuper@38025
   361
wneuper@59392
   362
fun vperm (Var _, Var _) = true  (* 2002 Pure/thm.ML *)
neuper@38025
   363
  | vperm (Abs (_, _, s), Abs (_, _, t)) = vperm (s, t)
neuper@38025
   364
  | vperm (t1 $ t2, u1 $ u2) = vperm (t1, u1) andalso vperm (t2, u2)
neuper@38025
   365
  | vperm (t, u) = (t = u);
neuper@38025
   366
neuper@38025
   367
(*2002 cp from Pure/term.ML --- since 2009 in Pure/old_term.ML*)
neuper@38025
   368
fun mem_term (_, []) = false
wneuper@59392
   369
  | mem_term (t, t' :: ts) = t aconv t' orelse mem_term (t, ts);
wneuper@59390
   370
fun subset_term ([], _) = true
wneuper@59390
   371
  | subset_term (x :: xs, ys) = mem_term (x, ys) andalso subset_term (xs, ys);
neuper@38025
   372
fun eq_set_term (xs, ys) =
neuper@38025
   373
    xs = ys orelse (subset_term (xs, ys) andalso subset_term (ys, xs));
neuper@38025
   374
(*a total, irreflexive ordering on index names*)
wneuper@59392
   375
fun xless ((a, i), (b, j): indexname) = i<j  orelse  (i = j andalso a < b);
neuper@38025
   376
(*a partial ordering (not reflexive) for atomic terms*)
wneuper@59392
   377
fun atless (Const (a, _), Const (b, _)) = a < b
wneuper@59392
   378
  | atless (Free (a, _), Free (b, _)) = a < b
wneuper@59392
   379
  | atless (Var (v, _), Var (w, _)) = xless (v, w)
wneuper@59392
   380
  | atless (Bound i, Bound j) =  i < j
wneuper@59392
   381
  | atless _ = false;
neuper@38025
   382
(*insert atomic term into partially sorted list, suppressing duplicates (?)*)
neuper@38025
   383
fun insert_aterm (t,us) =
neuper@38025
   384
  let fun inserta [] = [t]
neuper@38025
   385
        | inserta (us as u::us') =
neuper@38025
   386
              if atless(t,u) then t::us
neuper@38025
   387
              else if t=u then us (*duplicate*)
wneuper@59392
   388
              else u :: inserta us'
wneuper@59392
   389
  in inserta us end;
neuper@38025
   390
wneuper@59390
   391
(* Accumulates the Vars in the term, suppressing duplicates *)
neuper@38025
   392
fun add_term_vars (t, vars: term list) = case t of
wneuper@59392
   393
    Var   _ => insert_aterm (t, vars)
wneuper@59392
   394
  | Abs (_, _, body) => add_term_vars (body, vars)
wneuper@59392
   395
  | f$t =>  add_term_vars (f, add_term_vars (t, vars))
neuper@38025
   396
  | _ => vars;
wneuper@59390
   397
fun term_vars t = add_term_vars (t, []);
neuper@38025
   398
wneuper@59392
   399
(*2002 Pure/thm.ML *)
wneuper@59392
   400
fun var_perm (t, u) = vperm (t, u) andalso eq_set_term (term_vars t, term_vars u);
neuper@38025
   401
(*2002 fun decomp_simp, Pure/thm.ML *)
wneuper@59390
   402
fun perm lhs rhs = var_perm (lhs, rhs) andalso not (lhs aconv rhs) andalso not (is_Var lhs);
neuper@38025
   403
neuper@38025
   404
neuper@38025
   405
fun pairT T1 T2 = Type ("*", [T1, T2]);
neuper@38025
   406
fun PairT T1 T2 = ([T1, T2] ---> Type ("*", [T1, T2]));
wneuper@59392
   407
fun pairt t1 t2 = Const ("Product_Type.Pair", PairT (type_of t1) (type_of t2)) $ t1 $ t2;
neuper@38025
   408
neuper@38025
   409
fun mk_factroot op_(*=thy.sqrt*) T fact root = 
neuper@38034
   410
  Const ("Groups.times_class.times", [T, T] ---> T) $ (term_of_num T fact) $
wneuper@59392
   411
    (Const (op_, T --> T) $ term_of_num T root);
wneuper@59390
   412
fun mk_var_op_num v op_ optype ntyp n = Const (op_, optype) $ v $ Free (str_of_int  n, ntyp);
wneuper@59390
   413
fun mk_num_op_var v op_ optype ntyp n = Const (op_, optype) $ Free (str_of_int n, ntyp) $ v;
wneuper@59390
   414
fun mk_num_op_num T1 T2 (op_, Top) n1 n2 =
wneuper@59390
   415
  Const (op_, Top) $ Free (str_of_int n1, T1) $ Free (str_of_int n2, T2);
wneuper@59392
   416
fun mk_thmid thmid n1 n2 = 
wneuper@59392
   417
  thmid ^ (strip_thy n1) ^ "_" ^ (strip_thy n2);
wneuper@59392
   418
fun mk_add t1 t2 =
wneuper@59392
   419
  let
wneuper@59392
   420
    val (T1, T2) = (type_of t1, type_of t2)
wneuper@59392
   421
  in
wneuper@59392
   422
    if T1 <> T2 then raise TYPE ("mk_add gets ", [T1, T2], [t1,t2])
wneuper@59392
   423
    else (Const ("Groups.plus_class.plus", [T1, T2] ---> T1) $ t1 $ t2)
wneuper@59392
   424
  end;
neuper@38025
   425
neuper@38025
   426
(** transform binary numeralsstrings **)
neuper@38025
   427
(*Makarius 100308, hacked by WN*)
neuper@38025
   428
val numbers_to_string =
neuper@38025
   429
  let
neuper@38025
   430
    fun dest_num t =
neuper@38025
   431
      (case try HOLogic.dest_number t of
neuper@38025
   432
        SOME (T, i) =>
neuper@38025
   433
          (*if T = @{typ int} orelse T = @{typ real} then WN*)
neuper@38025
   434
            SOME (Free (signed_string_of_int i, T))
neuper@38025
   435
          (*else NONE  WN*)
neuper@38025
   436
      | NONE => NONE);
neuper@38025
   437
    fun to_str (Abs (x, T, b)) = Abs (x, T, to_str b)
neuper@38025
   438
      | to_str (t as (u1 $ u2)) =
neuper@38025
   439
          (case dest_num t of
neuper@38025
   440
            SOME t' => t'
neuper@38025
   441
          | NONE => to_str u1 $ to_str u2)
neuper@38025
   442
      | to_str t = perhaps dest_num t;
neuper@38025
   443
  in to_str end
neuper@38025
   444
val uminus_to_string =
wneuper@59392
   445
  let
wneuper@59392
   446
	  fun dest_num t =
wneuper@59392
   447
	    case t of
wneuper@59392
   448
	      (Const ("Groups.uminus_class.uminus", _) $ Free (s, T)) => 
wneuper@59392
   449
	        (case int_of_str_opt s of
wneuper@59392
   450
	          SOME i => SOME (Free (signed_string_of_int (~1 * i), T))
wneuper@59392
   451
	        | NONE => NONE)
wneuper@59392
   452
	    | _ => NONE;
wneuper@59392
   453
    fun to_str (Abs (x, T, b)) = Abs (x, T, to_str b)
wneuper@59392
   454
      | to_str (t as (u1 $ u2)) =
wneuper@59392
   455
          (case dest_num t of SOME t' => t' | NONE => to_str u1 $ to_str u2)
wneuper@59392
   456
      | to_str t = perhaps dest_num t;
wneuper@59392
   457
  in to_str end;
neuper@38025
   458
fun num_str thm =
wneuper@59392
   459
  let
wneuper@59392
   460
    val (deriv, 
wneuper@59333
   461
	   {cert = cert, tags = tags, maxidx = maxidx, shyps = shyps, 
wneuper@59185
   462
	    hyps = hyps, tpairs = tpairs, prop = prop}) = Thm.rep_thm_G thm
neuper@38025
   463
    val prop' = numbers_to_string prop;
wneuper@59333
   464
  in Thm.assbl_thm deriv cert tags maxidx shyps hyps tpairs prop' end;
neuper@38025
   465
wneuper@59392
   466
fun mk_Free (s,T) = Free (s, T);
wneuper@59392
   467
fun mk_free T s =  Free (s, T);
neuper@38025
   468
neuper@38025
   469
(*Special case: one argument cp from Isabelle2002/src/Pure/term.ML*)
wneuper@59392
   470
fun subst_bound (arg, t) =
wneuper@59392
   471
  let
wneuper@59392
   472
    fun subst (t as Bound i, lev) =
wneuper@59392
   473
        if i < lev then t (*var is locally bound*)
wneuper@59392
   474
        else if i = lev then incr_boundvars lev arg
wneuper@59392
   475
        else Bound (i - 1) (*loose: change it*)
wneuper@59392
   476
      | subst (Abs(a, T, body), lev) = Abs (a, T, subst (body, lev + 1))
wneuper@59392
   477
      | subst (f$t, lev) =  subst(f, lev)  $  subst(t, lev)
wneuper@59392
   478
      | subst (t, _) = t
wneuper@59392
   479
  in subst (t, 0)  end;
neuper@38025
   480
walther@59691
   481
(* instantiate let; necessary for scan_up1 *)
wneuper@59394
   482
fun inst_abs (Const sT) = Const sT
wneuper@59393
   483
  | inst_abs (Free sT) = Free sT
wneuper@59393
   484
  | inst_abs (Bound n) = Bound n
wneuper@59393
   485
  | inst_abs (Var iT) = Var iT
wneuper@59393
   486
  | inst_abs (Const ("HOL.Let",T1) $ e $ (Abs (v, T2, b))) = 
wneuper@59394
   487
    let val b' = subst_bound (Free (v, T2), b); (*fun variant_abs: term.ML*)
wneuper@59393
   488
    in Const ("HOL.Let", T1) $ inst_abs e $ (Abs (v, T2, inst_abs b')) end
wneuper@59393
   489
  | inst_abs (t1 $ t2) = inst_abs t1 $ inst_abs t2
wneuper@59393
   490
  | inst_abs t = t;
neuper@38025
   491
neuper@38037
   492
(* for parse and parse_patt: fix all types to real *)
neuper@38025
   493
fun T_a2real (Type (s, [])) = 
wneuper@59394
   494
    if s = "'a" orelse s = "'b" orelse s = "'c" then HOLogic.realT else Type (s, [])
neuper@38025
   495
  | T_a2real (Type (s, Ts)) = Type (s, map T_a2real Ts)
neuper@38025
   496
  | T_a2real (TFree (s, srt)) = 
wneuper@59394
   497
    if s = "'a" orelse s = "'b" orelse s = "'c" then HOLogic.realT else TFree (s, srt)
wneuper@59394
   498
  | T_a2real (TVar (("DUMMY", _), _)) = HOLogic.realT
neuper@38037
   499
  | T_a2real (TVar ((s, i), srt)) = 
wneuper@59394
   500
    if s = "'a" orelse s = "'b" orelse s = "'c" then HOLogic.realT else TVar ((s, i), srt)
neuper@38025
   501
fun typ_a2real (Const( s, T)) = (Const( s, T_a2real T)) 
neuper@38025
   502
  | typ_a2real (Free( s, T)) = (Free( s, T_a2real T))
neuper@38025
   503
  | typ_a2real (Var( n, T)) = (Var( n, T_a2real T))
neuper@38025
   504
  | typ_a2real (Bound i) = (Bound i)
neuper@38025
   505
  | typ_a2real (Abs(s,T,t)) = Abs(s, T, typ_a2real t)
neuper@38025
   506
  | typ_a2real (t1 $ t2) = (typ_a2real t1) $ (typ_a2real t2);
neuper@38025
   507
wneuper@59394
   508
(* TODO clarify parse with Test_Isac *)
wneuper@59394
   509
fun parseold thy str = (* before 2002 *)
wneuper@59394
   510
  (let val t = ((*typ_a2real o*) numbers_to_string) (Syntax.read_term_global thy str)
wneuper@59184
   511
   in SOME (Thm.global_cterm_of thy t) end)
wneuper@59394
   512
  handle _(*EXN? ..Inner syntax error Failed to parse term*) => NONE;
wneuper@59394
   513
fun parseN thy str = (* introduced 2002 *)
wneuper@59394
   514
  (let val t = (*(typ_a2real o numbers_to_string)*) (Syntax.read_term_global thy str)
wneuper@59184
   515
   in SOME (Thm.global_cterm_of thy t) end)
wneuper@59394
   516
  handle _(*EXN? ..Inner syntax error Failed to parse term*) => NONE;
wneuper@59394
   517
fun parse thy str = (* introduced 2010 *)
wneuper@59394
   518
  (let val t = (typ_a2real o numbers_to_string) (Syntax.read_term_global thy str)
wneuper@59394
   519
   in SOME (Thm.global_cterm_of thy t) end)
wneuper@59394
   520
  handle _(*EXN? ..Inner syntax error Failed to parse term*) => NONE;
neuper@38025
   521
neuper@41931
   522
(*WN110317 parseNEW will replace parse after introduction of ctxt completed*)
bonzai@41949
   523
fun parseNEW ctxt str = SOME (Syntax.read_term ctxt str |> numbers_to_string)
wneuper@59394
   524
   handle _ => NONE;
wneuper@59582
   525
fun parseNEW' ctxt str = 
wneuper@59582
   526
  case parseNEW ctxt str of
wneuper@59582
   527
    SOME t => t
wneuper@59582
   528
  | NONE => raise TERM ("NO parseNEW' for " ^ str, [])
wneuper@59582
   529
neuper@48879
   530
(* parse term patterns; Var ("v",_), i.e. "?v", are required for instantiation
neuper@48879
   531
  WN130613 probably compare to 
neuper@48879
   532
  http://www.mail-archive.com/isabelle-dev@mailbroy.informatik.tu-muenchen.de/msg04249.html*)
wneuper@59394
   533
fun parse_patt thy str =
wneuper@59416
   534
  (thy, str) |>> Rule.thy2ctxt 
wneuper@59394
   535
             |-> Proof_Context.read_term_pattern
wneuper@59394
   536
             |> numbers_to_string (*TODO drop*)
wneuper@59394
   537
             |> typ_a2real;       (*TODO drop*)
wneuper@59592
   538
fun str2term str = parse_patt (Rule.Thy_Info_get_theory "Isac_Knowledge") str
neuper@38025
   539
wneuper@59394
   540
(* TODO decide with Test_Isac *)
wneuper@59394
   541
fun is_atom t = length (vars t) = 1
neuper@38025
   542
fun is_atom (Const ("Float.Float",_) $ _) = true
neuper@38025
   543
  | is_atom (Const ("ComplexI.I'_'_",_)) = true
neuper@38034
   544
  | is_atom (Const ("Groups.times_class.times",_) $ t $ Const ("ComplexI.I'_'_",_)) = is_atom t
neuper@38025
   545
  | is_atom (Const ("Groups.plus_class.plus",_) $ t1 $ Const ("ComplexI.I'_'_",_)) = is_atom t1
neuper@38025
   546
  | is_atom (Const ("Groups.plus_class.plus",_) $ t1 $ 
neuper@38034
   547
		   (Const ("Groups.times_class.times",_) $ t2 $ Const ("ComplexI.I'_'_",_))) = 
neuper@38025
   548
    is_atom t1 andalso is_atom t2
neuper@38025
   549
  | is_atom (Const _) = true
neuper@38025
   550
  | is_atom (Free _) = true
neuper@38025
   551
  | is_atom (Var _) = true
neuper@38025
   552
  | is_atom _ = false;
neuper@38025
   553
wneuper@59394
   554
(* from Pure/term.ML; reports if ALL Free's have found a substitution
wneuper@59394
   555
   (required for evaluating the preconditions of _incomplete_ models) *)
wneuper@59394
   556
fun subst_atomic_all [] t = (false (*TODO may be 'true' for some terms ?*), t)
wneuper@59394
   557
  | subst_atomic_all instl t =
wneuper@59394
   558
    let
wneuper@59394
   559
      fun subst (Abs (a, T, body)) = 
wneuper@59394
   560
          let
wneuper@59394
   561
            val (all, body') = subst body
wneuper@59394
   562
          in (all, Abs(a, T, body')) end
wneuper@59394
   563
        | subst (f$tt) = 
wneuper@59394
   564
	        let
wneuper@59394
   565
	          val (all1, f') = subst f
wneuper@59394
   566
	          val (all2, tt') = subst tt
wneuper@59394
   567
	        in (all1 andalso all2, f' $ tt') end
wneuper@59394
   568
        | subst (t as Free _) = 
wneuper@59394
   569
	        if is_num t then (true, t) (*numerals cannot be subst*)
wneuper@59394
   570
	        else (case assoc (instl, t) of
wneuper@59394
   571
					  SOME t' => (true, t')
wneuper@59394
   572
				  | NONE => (false, t))
wneuper@59394
   573
        | subst t = (true, if_none (assoc(instl,t)) t)
wneuper@59394
   574
    in subst t end;
wneuper@59389
   575
wneuper@59507
   576
fun op contains_one_of (thm, ids) =
wneuper@59507
   577
  Term.exists_Const (fn id => member op= ids id) (Thm.prop_of thm)
wneuper@59507
   578
wneuper@59532
   579
fun var_for vs (t as Const (str, _)) id = if id = strip_thy str then t :: vs else vs
wneuper@59532
   580
  | var_for vs (t as Free (str, _)) id = if id = str then t :: vs else vs
wneuper@59532
   581
  | var_for vs (t as Var (idn, _)) id = if id = Term.string_of_vname idn then t :: vs else vs
wneuper@59532
   582
  | var_for vs (Bound _) _ = vs
wneuper@59532
   583
  | var_for vs (Abs (_, _, t)) id = var_for vs t id
wneuper@59532
   584
  | var_for vs (t1 $ t2) id = (var_for vs t1 id) @ (var_for vs t2 id)
wneuper@59532
   585
wneuper@59532
   586
val poly_consts = (* TODO: adopt syntax-const from Isabelle*)
wneuper@59532
   587
  ["Groups.plus_class.plus", "Groups.minus_class.minus",
wneuper@59532
   588
  "Rings.divide_class.divide", "Groups.times_class.times",
walther@59603
   589
  "Prog_Expr.pow"];
wneuper@59532
   590
(* treat Free, Const, Var as variables in polynomials *)
wneuper@59532
   591
fun vars_of t =
wneuper@59532
   592
  let
wneuper@59532
   593
    val var_ids = t |> ids2str |> subtract op = poly_consts |> map strip_thy |> sort string_ord
wneuper@59532
   594
  in (map (var_for [] t) var_ids) |> flat |> distinct end
wneuper@59532
   595
wneuper@59577
   596
(* this may decompose an object-language isa-list;
wneuper@59577
   597
   use only, if description is not available, eg. not input ?WN:14.5.03 ??!?*)
wneuper@59577
   598
fun dest_list' t = if is_list t then isalist2list t  else [t];
wneuper@59577
   599
wneuper@59580
   600
fun raise_type_conflicts ts =
wneuper@59580
   601
  let
wneuper@59580
   602
    val dups = duplicates (op =) (map (fst o dest_Free) ts)
wneuper@59580
   603
    val confl = filter (fn Free (str, _) => member op = dups str) ts
wneuper@59580
   604
  in
wneuper@59580
   605
    if confl = []
wneuper@59580
   606
    then ()
wneuper@59582
   607
    else raise TYPE ("formalisation inconsistent w.r.t. type inference: ",
wneuper@59580
   608
      map (snd o dest_Free)confl, confl)
wneuper@59580
   609
  end
wneuper@59580
   610
walther@59716
   611
(* expects t as Const *)
walther@59717
   612
fun contains_Const_typeless ts t = (t
walther@59716
   613
  |> strip_comb |> fst
walther@59716
   614
  |> member (fn (t1, t2) => fst (dest_Const t1) = fst (dest_Const t2)) ts
walther@59717
   615
) handle TERM("dest_Const", _) => raise TERM ("contains_Const_typeless", [t])
walther@59716
   616
walther@59716
   617
wneuper@59389
   618
end