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