src/Tools/isac/ProgLang/rewrite.sml
author Walther Neuper <neuper@ist.tugraz.at>
Sat, 24 Aug 2013 11:18:43 +0200
changeset 52085 39f0a7b9b054
parent 52084 e8f46493af82
child 52101 c3f399ce32af
permissions -rw-r--r--
GCD_Poly_ML: reformat specific part of rewriter

TODO: ?has prepat been replaced by checks in SML-code?
# new test doesn't work (which might be a quick mistake in the sequence)
# prepat is used by order_add_ and order_mult
neuper@37906
     1
(* isac's rewriter
neuper@37906
     2
   (c) Walther Neuper 2000
neuper@37906
     3
neuper@37947
     4
use"ProgLang/rewrite.sml"; 
neuper@37906
     5
use"rewrite.sml";
neuper@37906
     6
*)
neuper@37906
     7
neuper@37906
     8
neuper@37906
     9
exception NO_REWRITE;
neuper@37906
    10
exception STOP_REW_SUB; (*WN050820 quick and dirty*)
neuper@37906
    11
neuper@52084
    12
(* 
neuper@52084
    13
Synopsis rewriting (prep for reference manual):
neuper@52084
    14
----------------------------------------------
neuper@52084
    15
Rewriting uses theorems for transforming terms. However, not all kinds
neuper@52084
    16
of such transformations can be done by rewriting. Examples are
neuper@52084
    17
calculation with numerals or cancellation of fractions. 
neuper@52084
    18
neuper@52084
    19
Isac tries to present transformations like calculations or cancellation 
neuper@52084
    20
as simple rewrite steps for the naive user. However, some of such
neuper@52084
    21
transformations should be transparent to the user by single-stepping.
neuper@52084
    22
For instance, cancellation involves interesting CA algorithms like 
neuper@52084
    23
GCD of multivariate polynomials.
neuper@52084
    24
neuper@52084
    25
Thus Isac has two mechanisms for including SML code, "thm Calc" and "Rrls",
neuper@52084
    26
the former for steps which are not meant to be inspected by single-stepping
neuper@52084
    27
the latter meant for single-stepping and providing respective mechanisms.
neuper@52084
    28
neuper@52084
    29
(1) Inclusion by "thm Calc" for 1-step execution
neuper@52084
    30
TODO
neuper@52084
    31
neuper@52084
    32
(2) Inclusion by "Rrls" for multi-step execution
neuper@52084
    33
TODO
neuper@52084
    34
In multi-step execution "reverse rewriting" worked only as passive presentation
neuper@52084
    35
without any interaction. So the functions init_state, locate_rule etc are just dummies.
neuper@52084
    36
TODO
neuper@52084
    37
? multi-step execution did never work.
neuper@52084
    38
what worked is "reverse rewriting", 
neuper@52084
    39
i.e. presentation of intermediate steps *without* interaction
neuper@52084
    40
TODO
neuper@52084
    41
# type rule and scr | Rfuns
neuper@52084
    42
# type rrlsstate = (*state for reverse rewriting*) 
neuper@52084
    43
# type and rls | Rrls
neuper@52084
    44
all in calcelems.sml
neuper@52084
    45
TODO
neuper@52084
    46
*)
neuper@37906
    47
fun rewrite__ thy i bdv tless rls put_asm thm ct =
neuper@38022
    48
  (let
neuper@37906
    49
    val (t',asms,lrd,rew) = 
neuper@37906
    50
	rew_sub thy i bdv tless rls put_asm [(*root of the term*)]
neuper@37906
    51
		(((inst_bdv bdv) o norm o #prop o rep_thm) thm) ct;
neuper@37906
    52
  in if rew then SOME (t', distinct asms)
neuper@37906
    53
     else NONE end)
neuper@38022
    54
(* one rewrite (possibly conditional, ordered) EXOR exn EXOR go into subterms *)
neuper@37906
    55
and rew_sub thy i bdv tless rls put_asm lrd r t = 
neuper@41928
    56
  ((*tracing ("@@@ rew_sub begin: t = "^(term2str t));
neuper@41921
    57
   tracing ("@@@ rew_sub begin: bdv = "^(PolyML.makestring bdv));
neuper@41928
    58
   tracing ("@@@ rew_sub begin: r = "^(term2str r));*)
neuper@37906
    59
    let                  (* copy from Pure/thm.ML: fun rewritec *)
neuper@37906
    60
     val (lhs, rhs) = (HOLogic.dest_eq o HOLogic.dest_Trueprop
neuper@37906
    61
                       o Logic.strip_imp_concl) r;
neuper@37906
    62
     val r' = Envir.subst_term (Pattern.match thy (lhs, t) 
neuper@37906
    63
					      (Vartab.empty, Vartab.empty)) r;
neuper@38022
    64
     val p' = map HOLogic.dest_Trueprop ((fst o Logic.strip_prems) 
neuper@38022
    65
                                             (Logic.count_prems r', [], r'));
neuper@37906
    66
     val t' = (snd o HOLogic.dest_eq o HOLogic.dest_Trueprop 
neuper@37906
    67
               o Logic.strip_imp_concl) r';
neuper@38015
    68
     (*val _= tracing("@@@ rew_sub match: t'= "^(term2str t'));*)
neuper@37906
    69
     val _= if ! trace_rewrite andalso i < ! depth andalso p' <> []
neuper@38015
    70
	    then tracing((idt"#"(i+1))^" eval asms: "^(term2str r')) else();
neuper@37976
    71
     val (t'',p'') =                                   (*conditional rewriting*)
neuper@37906
    72
	 let val (simpl_p', nofalse) = eval__true thy (i+1) p' bdv rls 	     
neuper@37906
    73
	 in if nofalse
neuper@37906
    74
	    then (if ! trace_rewrite andalso i < ! depth andalso p' <> []
neuper@38015
    75
		  then tracing((idt"#"(i+1))^" asms accepted: "^(terms2str p')^
neuper@37906
    76
			       "   stored: "^(terms2str simpl_p'))
neuper@38022
    77
		  else(); (t',simpl_p'))             (* uncond.rew. from above*)
neuper@37906
    78
	    else 
neuper@37906
    79
		(if ! trace_rewrite andalso i < ! depth 
neuper@38015
    80
		 then tracing((idt"#"(i+1))^" asms false: "^(terms2str p')) 
neuper@37906
    81
		 else(); raise STOP_REW_SUB (*dont go into subterms of cond*))
neuper@37906
    82
	 end
neuper@37976
    83
   in if perm lhs rhs andalso not (tless bdv (t',t))       (*ordered rewriting*)
neuper@37906
    84
	then (if ! trace_rewrite andalso i < ! depth 
neuper@38015
    85
	      then tracing((idt"#"i)^" not: \""^
neuper@37906
    86
	      (term2str t)^"\" > \""^
neuper@37906
    87
	      (term2str t')^"\"") else (); 
neuper@37906
    88
	      raise NO_REWRITE )
neuper@38015
    89
	else ((*tracing("##@ rew_sub: (t''= "^(term2str t'')^
neuper@37906
    90
		      ", p'' ="^(terms2str p'')^", true)");*)
neuper@37906
    91
	      (t'',p'',[],true))
neuper@37906
    92
   end
neuper@37906
    93
   ) handle _ (*NO_REWRITE WN050820 causes diff.behav. in tests + MATCH!*) => 
neuper@38015
    94
     ((*tracing ("@@@ rew_sub gosub: t = "^(term2str t));*)
neuper@37906
    95
      case t of
neuper@37906
    96
	Const(s,T) => (Const(s,T),[],lrd,false)
neuper@37906
    97
      | Free(s,T) => (Free(s,T),[],lrd,false)
neuper@37906
    98
      | Var(n,T) => (Var(n,T),[],lrd,false)
neuper@37906
    99
      | Bound i => (Bound i,[],lrd,false)
neuper@37906
   100
      | Abs(s,T,body) => 
neuper@37906
   101
	  let val (t', asms, lrd, rew) = 
neuper@37906
   102
		  rew_sub thy i bdv tless rls put_asm (lrd@[D]) r body
neuper@37906
   103
	  in (Abs(s,T,t'), asms, [], rew) end
neuper@37906
   104
      | t1 $ t2 => 
neuper@37906
   105
	  let val (t2', asm2, lrd, rew2) = 
neuper@37906
   106
		  rew_sub thy i bdv tless rls put_asm (lrd@[R]) r t2
neuper@37906
   107
	  in if rew2 then (t1 $ t2', asm2, lrd, true)
neuper@37906
   108
	     else let val (t1', asm1, lrd, rew1) = 
neuper@37906
   109
	       rew_sub thy i bdv tless rls put_asm (lrd@[L]) r t1
neuper@37906
   110
		  in if rew1 then (t1' $ t2, asm1, lrd, true)
neuper@37906
   111
		     else (t1 $ t2,[], lrd, false) end
neuper@37906
   112
	  end)
neuper@38022
   113
(* simplify asumptions until one evaluates to false, store intermined's (x~=0)*)
neuper@37906
   114
and eval__true thy i asms bdv rls =
neuper@48760
   115
  if asms = [@{term True}] orelse asms = [] then ([], true)
neuper@48760
   116
  (* this allows to check Rrls with prepat = ([@{term True}], pat) *)
neuper@48760
   117
  else if asms = [@{term False}] then ([], false)
neuper@52085
   118
  else
neuper@52085
   119
    let                            
neuper@37906
   120
      fun chk indets [] = (indets, true)(*return asms<>True until false*)
neuper@52085
   121
        | chk indets (a::asms) =
neuper@52085
   122
          (case rewrite__set_ thy (i+1) false bdv rls a of
neuper@52085
   123
            NONE => (chk (indets @ [a]) asms)
neuper@52085
   124
          | SOME (t, a') =>
neuper@52085
   125
            if t = @{term True} then (chk (indets @ a') asms) 
neuper@52085
   126
            else if t = @{term False} then ([], false)
neuper@52085
   127
          (*asm false .. thm not applied ^^^; continue until False vvv*)
neuper@52085
   128
          else chk (indets @ [t] @ a') asms);
neuper@52085
   129
    in chk [] asms end
neuper@38022
   130
(* rewrite with a rule set, which must not be the empty Erls *)
neuper@37906
   131
and rewrite__set_ _ _ __ Erls t = 
neuper@38031
   132
    error("rewrite__set_ called with 'Erls' for '"^term2str t^"'")
neuper@38036
   133
  (* rewrite with a 'reverse rule set' implemented by ML code *)
neuper@37906
   134
  | rewrite__set_ thy i _ _ (rrls as Rrls _) t =
neuper@37906
   135
    let val _= if ! trace_rewrite andalso i < ! depth 
neuper@38015
   136
	       then tracing ((idt"#"i)^" rls: "^(id_rls rrls)^" on: "^
neuper@37906
   137
			     (term2str t)) else ()
neuper@37906
   138
	val (t', asm, rew) = app_rev thy (i+1) rrls t
neuper@37906
   139
    in if rew then SOME (t', distinct asm)
neuper@37906
   140
       else NONE end
neuper@38022
   141
  (* rewrite with a rule set containing Thms or Calculations *)
neuper@37906
   142
  | rewrite__set_ thy i put_asm bdv rls ct =
neuper@37906
   143
(* val (thy, i, put_asm, bdv, rls, ct) = (thy, 1, bool, [], rls, term);
neuper@37906
   144
   *)
neuper@37906
   145
  let
neuper@37906
   146
    datatype switch = Appl | Noap;
neuper@37906
   147
    fun rew_once ruls asm ct Noap [] = (ct,asm)
neuper@37906
   148
      | rew_once ruls asm ct Appl [] = 
neuper@37906
   149
	(case rls of Rls _ => rew_once ruls asm ct Noap ruls
neuper@37906
   150
		   | Seq _ => (ct,asm))
neuper@37906
   151
      | rew_once ruls asm ct apno (rul::thms) =
neuper@37906
   152
(* val (ruls, asm, ct, apno, (rul::thms)) = (ruls, [], ct, Noap, ruls);
neuper@37906
   153
   val Thm (thmid, thm) = rul;
neuper@37906
   154
   *)
neuper@37906
   155
      case rul of
neuper@37906
   156
	Thm (thmid, thm) =>
neuper@37906
   157
	  (if !trace_rewrite andalso i < ! depth 
neuper@38015
   158
	   then tracing((idt"#"(i+1))^" try thm: "^thmid) else ();
neuper@37906
   159
	   case rewrite__ thy (i+1) bdv ((snd o #rew_ord o rep_rls) rls)
neuper@37906
   160
	     ((#erls o rep_rls) rls) put_asm thm ct of
neuper@37906
   161
	     NONE => rew_once ruls asm ct apno thms
neuper@37906
   162
	   | SOME (ct',asm') => (if ! trace_rewrite andalso i < ! depth 
neuper@38015
   163
	     then tracing((idt"="(i+1))^" rewrites to: "^
neuper@37906
   164
			  (term2str ct')) else ();
neuper@37906
   165
	       rew_once ruls (union (op =) asm asm') ct' Appl (rul::thms)))
neuper@37906
   166
      | Calc (cc as (op_,_)) => 
neuper@37906
   167
	  (let val _= if !trace_rewrite andalso i < ! depth then
neuper@38015
   168
		      tracing((idt"#"(i+1))^" try calc: "^op_^"'") else ();
neuper@37906
   169
	     val ct = uminus_to_string ct
neuper@37906
   170
	   in case get_calculation_ thy cc ct of
neuper@38022
   171
	     NONE => rew_once ruls asm ct apno thms
neuper@37906
   172
	   | SOME (thmid, thm') => 
neuper@37906
   173
	       let 
neuper@37906
   174
		 val pairopt = 
neuper@37906
   175
		   rewrite__ thy (i+1) bdv ((snd o #rew_ord o rep_rls) rls)
neuper@37906
   176
		   ((#erls o rep_rls) rls) put_asm thm' ct;
neuper@37906
   177
		 val _ = if pairopt <> NONE then () 
neuper@38031
   178
			 else error("rewrite_set_, rewrite_ \""^
neuper@37906
   179
			 (string_of_thmI thm')^"\" "^(term2str ct)^" = NONE")
neuper@37906
   180
		 val _ = if ! trace_rewrite andalso i < ! depth 
neuper@38015
   181
			   then tracing((idt"="(i+1))^" calc. to: "^
neuper@37906
   182
					(term2str ((fst o the) pairopt)))
neuper@37906
   183
			 else()
neuper@38022
   184
	       in rew_once ruls asm ((fst o the) pairopt) Appl (rul::thms) end
neuper@37906
   185
	   end)
neuper@37906
   186
      | Cal1 (cc as (op_,_)) => 
neuper@37906
   187
	  (let val _= if !trace_rewrite andalso i < ! depth then
neuper@38015
   188
		      tracing((idt"#"(i+1))^" try cal1: "^op_^"'") else ();
neuper@37906
   189
	     val ct = uminus_to_string ct
neuper@37906
   190
	   in case get_calculation1_ thy cc ct of
neuper@37906
   191
	     NONE => (ct, asm)
neuper@37906
   192
	   | SOME (thmid, thm') =>
neuper@37906
   193
	       let 
neuper@37906
   194
		 val pairopt = 
neuper@37906
   195
		   rewrite__ thy (i+1) bdv ((snd o #rew_ord o rep_rls) rls)
neuper@37906
   196
		   ((#erls o rep_rls) rls) put_asm thm' ct;
neuper@37906
   197
		 val _ = if pairopt <> NONE then () 
neuper@38031
   198
			 else error("rewrite_set_, rewrite_ \""^
neuper@37906
   199
			 (string_of_thmI thm')^"\" "^(term2str ct)^" = NONE")
neuper@37906
   200
		 val _ = if ! trace_rewrite andalso i < ! depth 
neuper@38015
   201
			   then tracing((idt"="(i+1))^" cal1. to: "^
neuper@37906
   202
					(term2str ((fst o the) pairopt)))
neuper@37906
   203
			 else()
neuper@37906
   204
	       in the pairopt end
neuper@37906
   205
	   end)
neuper@37906
   206
      | Rls_ rls' => 
neuper@37906
   207
	(case rewrite__set_ thy (i+1) put_asm bdv rls' ct of
neuper@37906
   208
	     SOME (t',asm') => rew_once ruls (union (op =) asm asm') t' Appl thms
neuper@37906
   209
	   | NONE => rew_once ruls asm ct apno thms);
neuper@37906
   210
neuper@37906
   211
    val ruls = (#rules o rep_rls) rls;
neuper@37906
   212
    val _= if ! trace_rewrite andalso i < ! depth 
neuper@38015
   213
	   then tracing ((idt"#"i)^" rls: "^(id_rls rls)^" on: "^
neuper@37906
   214
			 (term2str ct)) else ()
neuper@37906
   215
    val (ct',asm') = rew_once ruls [] ct Noap ruls;
neuper@37906
   216
  in if ct = ct' then NONE else SOME (ct', distinct asm') end
neuper@37906
   217
neuper@52085
   218
(* apply an Rrls; if not applicable proceed with subterms *)
neuper@37906
   219
and app_rev thy i rrls t = 
neuper@52085
   220
  let (* check a (precond, pattern) of a rev-set; stops with 1st true *)
neuper@52085
   221
    fun chk_prepat thy erls [] t = true
neuper@52085
   222
      | chk_prepat thy erls prepat t =
neuper@52085
   223
        let
neuper@52085
   224
          fun chk (pres, pat) =
neuper@52085
   225
            (let 
neuper@52085
   226
              val subst: Type.tyenv * Envir.tenv =
neuper@52085
   227
                Pattern.match thy (pat, t) (Vartab.empty, Vartab.empty)
neuper@52085
   228
             in
neuper@52085
   229
              snd (eval__true thy (i + 1) (map (Envir.subst_term subst) pres) [] erls)
neuper@52085
   230
             end) handle _ => false
neuper@52085
   231
           fun scan_ f [] = false (*scan_ NEVER called by []*)
neuper@52085
   232
             | scan_ f (pp::pps) =
neuper@52085
   233
               if f pp then true else scan_ f pps;
neuper@52085
   234
        in scan_ chk prepat end;
neuper@52085
   235
    (* apply the normal_form of a rev-set *)
neuper@52085
   236
    fun app_rev' thy (Rrls{erls,prepat,scr=Rfuns{normal_form,...},...}) t =
neuper@52085
   237
      if chk_prepat thy erls prepat t
neuper@52085
   238
      then ((*tracing("### app_rev': t = "^(term2str t));*) normal_form t)
neuper@52085
   239
      else NONE;
neuper@52085
   240
    val opt = app_rev' thy rrls t
neuper@52085
   241
  in
neuper@52085
   242
    case opt of
neuper@52085
   243
      SOME (t', asm) => (t', asm, true)
neuper@52085
   244
    | NONE => app_sub thy i rrls t
neuper@52085
   245
  end
neuper@37906
   246
neuper@52085
   247
(* apply an Rrls to subterms *)
neuper@37906
   248
and app_sub thy i rrls t =
neuper@52085
   249
  ((*tracing("### app_sub: subterm = "^(term2str t));*)
neuper@52085
   250
  case t of
neuper@52085
   251
    Const (s, T) => (Const(s, T), [], false)
neuper@52085
   252
  | Free (s, T) => (Free(s, T), [], false)
neuper@52085
   253
  | Var (n, T) => (Var(n, T), [], false)
neuper@52085
   254
  | Bound i => (Bound i, [], false)
neuper@52085
   255
  | Abs (s, T, body) => 
neuper@37906
   256
	  let val (t', asm, rew) = app_rev thy i rrls body
neuper@37906
   257
	  in (Abs(s, T, t'), asm, rew) end
neuper@52085
   258
  | t1 $ t2 => 
neuper@52085
   259
    let val (t2', asm2, rew2) = app_rev thy i rrls t2
neuper@52085
   260
    in
neuper@52085
   261
      if rew2 then (t1 $ t2', asm2, true)
neuper@52085
   262
      else
neuper@52085
   263
        let val (t1', asm1, rew1) = app_rev thy i rrls t1
neuper@52085
   264
        in if rew1 then (t1' $ t2, asm1, true)
neuper@52085
   265
           else (t1 $ t2, [], false)
neuper@52085
   266
        end
neuper@52085
   267
    end);
neuper@37906
   268
neuper@37906
   269
neuper@37906
   270
neuper@37906
   271
(*.rewriting without argument [] for rew_ord.*)
neuper@37906
   272
(*WN.11.6.03: shouldnt asm<>[] lead to false ????*)
neuper@37906
   273
fun eval_true thy terms rls = (snd o (eval__true thy 1 terms [])) rls;
neuper@37906
   274
neuper@37906
   275
neuper@37906
   276
(*.rewriting without internal argument [] for rew_ord.*)
neuper@37906
   277
(* val (thy, rew_ord, erls, bool, thm, term) =
neuper@37906
   278
       (thy, (assoc_rew_ord ro), rls', false, (assoc_thm' thy thm'), f);
neuper@37906
   279
   val (thy, rew_ord, erls, bool, thm, term) =
neuper@37906
   280
       (thy, rew_ord, erls, false, thm, t'');
neuper@37906
   281
   *)
neuper@37906
   282
fun rewrite_ thy rew_ord erls bool thm term = 
neuper@37906
   283
    rewrite__ thy 1 [] rew_ord erls bool thm term;
neuper@37906
   284
fun rewrite_set_ thy bool rls term =
neuper@37906
   285
(* val (thy, bool, rls, term) = (thy, false, srls, t);
neuper@37906
   286
   *)
neuper@37906
   287
    rewrite__set_ thy 1 bool [] rls term;
neuper@37906
   288
neuper@37906
   289
neuper@37906
   290
fun subs'2subst thy (s:subs') = 
neuper@37906
   291
    (((map (apfst (term_of o the o (parse thy)))) 
neuper@37906
   292
     o (map (apsnd (term_of o the o (parse thy))))) s):subst;
neuper@37906
   293
neuper@37906
   294
(*.variants of rewrite.*)
neuper@37906
   295
(*FIXME 12.8.02: put_asm = true <==> rewrite_inst,
neuper@37906
   296
  thus the argument put_asm  IS NOT NECESSARY -- FIXME*)
neuper@37906
   297
(* val (rew_ord,rls,put_asm,thm,ct)=
neuper@37906
   298
       (e_rew_ord,poly_erls,false,num_str d1_isolate_add2,t);
neuper@37906
   299
   *)
neuper@37906
   300
fun rewrite_inst_ (thy:theory) rew_ord (rls:rls) (put_asm:bool) 
neuper@37906
   301
		  (subst:(term * term) list) (thm:thm) (ct:term) =
neuper@37906
   302
    rewrite__ thy 1 subst rew_ord rls put_asm thm ct;
neuper@37906
   303
neuper@37906
   304
fun rewrite_set_inst_ (thy:theory) 
neuper@37906
   305
  (put_asm:bool) (subst:(term * term) list) (rls:rls) (ct:term) =
neuper@37906
   306
  (*let 
neuper@37906
   307
    val subst = subs'2subst thy subs';
neuper@37906
   308
    val subrls = instantiate_rls subs' rls
neuper@37906
   309
  in*) rewrite__set_ thy 1 put_asm subst (*sub*)rls ct
neuper@37906
   310
  (*end*);
neuper@37906
   311
neuper@38025
   312
(* given a list of equalities (lhs = rhs) and a term, 
neuper@38025
   313
   replace all occurrences of lhs in the term with rhs;
neuper@38025
   314
   thus the order or equalities matters: put variables in lhs first. *)
neuper@38025
   315
fun rewrite_terms_ thy ord erls equs t =
neuper@42359
   316
  let
neuper@42359
   317
	  fun rew_ (t', asm') [] _ = (t', asm')
neuper@42359
   318
	    | rew_ (t', asm') (rules as r::rs) t =
neuper@42359
   319
	        let
neuper@42359
   320
	          val (t'', asm'', lrd, rew) = rew_sub thy 1 [] ord erls false [] (Trueprop $ r) t
neuper@42359
   321
	        in 
neuper@42359
   322
	          if rew 
neuper@42359
   323
	          then rew_ (t'', asm' @ asm'') rules t''
neuper@42359
   324
	          else rew_ (t', asm') rs t'
neuper@42359
   325
	        end
neuper@42359
   326
	  val (t'', asm'') = rew_ (e_term, []) equs t
neuper@42359
   327
    in if t'' = e_term then NONE else SOME (t'', asm'')
neuper@42359
   328
    end;
neuper@37906
   329
neuper@37906
   330
(*. search ct for adjacent numerals and calculate them by operator isa_fn .*)
neuper@37906
   331
fun calculate_ thy isa_fn ct =
neuper@37906
   332
  let val ct = uminus_to_string ct
neuper@37906
   333
    in case get_calculation_ thy isa_fn ct of
neuper@37906
   334
	   NONE => NONE
neuper@37906
   335
	 | SOME (thmID, thm) => 
neuper@37906
   336
	   (let val SOME (rew,_) = rewrite_ thy dummy_ord e_rls false thm ct
neuper@37906
   337
    in SOME (rew,(thmID, thm)) end)
neuper@37906
   338
	   handle _ => error ("calculate_: "^thmID^" does not rewrite")
neuper@37906
   339
  end;
neuper@37906
   340
(*
neuper@37906
   341
> val thy = InsSort.thy;
neuper@37906
   342
> val op_ = "le";      (* < *)
neuper@37906
   343
> val ct = (the o (parse thy)) 
neuper@37906
   344
   "foldr ins [#2] (if #1 < #3 then #1 # ins [] #3 else [#3, #1])";
neuper@37906
   345
> calculate_ thy op_ ct;
neuper@37906
   346
  SOME
neuper@37906
   347
    ("foldr ins [#2] (if True then #1 # ins [] #3 else [#3, #1])",
neuper@37906
   348
     "(#1 < #3) = True") : (cterm * thm) option  *)
neuper@37906
   349
neuper@37906
   350
fun get_rls_scr rs' = ((#scr o rep_rls o #2 o the o assoc') (!ruleset',rs'))
neuper@38031
   351
  handle _ => error ("get_rls_scr: no script for "^rs');
neuper@37906
   352
neuper@37906
   353
neuper@37906
   354
(*make_thm added to Pure/thm.ML*)
neuper@37906
   355
fun mk_thm thy str = 
neuper@37906
   356
    let val t = (term_of o the o (parse thy)) str
neuper@37906
   357
	val t' = case t of
neuper@37906
   358
		     Const ("==>",_) $ _ $ _ => t
neuper@37906
   359
		   | _ => Trueprop $ t
neuper@37938
   360
    in make_thm (cterm_of thy t') end;
neuper@37906
   361
(*
neuper@37906
   362
  val str = "?r ^^^ 2 = ?r * ?r";
neuper@37906
   363
  val thm = realpow_twoI;
neuper@37906
   364
neuper@37906
   365
  val t1 = (#prop o rep_thm) (num_str thm);
neuper@37906
   366
  val t2 = Trueprop $ ((term_of o the o (parse thy)) str);
neuper@37906
   367
  t1 = t2;
neuper@37906
   368
val it = true : bool      ... !!!
neuper@37906
   369
  val th1 = (num_str thm);
neuper@37906
   370
  val th2 = ((*num_str*) (mk_thm thy str)) handle e => print_exn e;
neuper@37906
   371
  th1 = th2;
neuper@37906
   372
ML> val it = false : bool ... HIDDEN DIFFERENCES IRRELEVANT FOR ISAC ?!
neuper@37906
   373
neuper@37906
   374
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
neuper@37906
   375
  val str = "k ~= 0 ==> m * k / (n * k) = m / n";
neuper@37906
   376
  val thm = real_mult_div_cancel2;
neuper@37906
   377
neuper@37906
   378
  val t1 = (#prop o rep_thm) (num_str thm);
neuper@37906
   379
  val t2 = ((term_of o the o (parse thy)) str);
neuper@37906
   380
  t1 = t2;
neuper@37906
   381
val it = false : bool     ... Var .. Free
neuper@37906
   382
  val th1 = (num_str thm);
neuper@37906
   383
  val th2 = ((*num_str*) (mk_thm thy str)) handle e => print_exn e;
neuper@37906
   384
  th1 = th2;
neuper@37906
   385
ML> val it = false : bool ... PLUS HIDDEN DIFFERENCES IRRELEVANT FOR ISAC ?!
neuper@37906
   386
*)
neuper@37906
   387
neuper@37906
   388
neuper@37906
   389
(*prints subgoal etc. 
neuper@37906
   390
((goal thy);(topthm()) o ) str;                      *)
neuper@37906
   391
(*assume rejects scheme variables 
neuper@37938
   392
  assume ((cterm_of thy) (Trueprop $ 
neuper@37906
   393
		(term_of o the o (parse thy)) str)); *)
neuper@37906
   394
neuper@37906
   395
neuper@37906
   396
(* outcommented 18.11.xx, xx < 02 -------
neuper@37906
   397
fun rul2rul' (Thm (thmid, thm)) = Thm'(thmid, string_of_thmI thm)
neuper@37906
   398
  | rul2rul' (Calc op_)         = Calc' op_;
neuper@37906
   399
fun rul'2rul thy (Thm'(thmid, ct')) = 
neuper@37906
   400
       Thm (thmid, mk_thm thy ct')
neuper@37906
   401
  | rul'2rul thy' (Calc' op_)        = Calc op_;
neuper@37906
   402
neuper@37906
   403
neuper@37906
   404
fun rls2rls' (Rls{preconds=preconds,rew_ord=rew_ord,rules=rules}:rls) =
neuper@37906
   405
  Rls'{preconds'= map string_of_cterm preconds,
neuper@37906
   406
       rew_ord' = fst rew_ord,
neuper@37906
   407
       rules'   = map rul2rul' rules}:rlsdat';
neuper@37906
   408
neuper@37906
   409
fun rls'2rls thy' (Rls'{preconds'=preconds,rew_ord'=rew_ord,
neuper@37906
   410
		   rules'=rules}:rlsdat') =
neuper@38041
   411
  let val thy = assoc_thy thy';
neuper@37906
   412
  in Rls{preconds = map (the o (parse thy)) preconds,
neuper@37906
   413
	 rew_ord  = (rew_ord, the (assoc'(rew_ord',rew_ord))),
neuper@37906
   414
	 rules    = map (rul'2rul thy) rules}:rls end;
neuper@37906
   415
------- *)
neuper@37906
   416
neuper@37906
   417
(*.get the theorem associated with the xstring-identifier;
neuper@37906
   418
   if the identifier starts with "sym_" then swap lhs = rhs around =
neuper@37906
   419
   (ATTENTION: "RS sym" attaches a [.] -- remove it with string_of_thmI);
neuper@37906
   420
   identifiers starting with "#" come from Calc and
neuper@37906
   421
   get a hand-made theorem (containing numerals only).*)
neuper@37906
   422
fun assoc_thm' (thy:theory) ((thmid, ct'):thm') =
neuper@40836
   423
    (case Symbol.explode thmid of
neuper@37906
   424
	"s"::"y"::"m"::"_"::id => 
neuper@37906
   425
	if hd id = "#" 
neuper@37906
   426
	then mk_thm thy ct'
neuper@41899
   427
	else ((num_str o (Global_Theory.get_thm thy)) (implode id)) RS sym
neuper@37906
   428
      | id => 
neuper@37906
   429
	if hd id = "#" 
neuper@37906
   430
	then mk_thm thy ct'
neuper@41899
   431
	else (num_str o (Global_Theory.get_thm thy)) thmid
neuper@37906
   432
	     ) handle _ => 
neuper@38031
   433
		      error ("assoc_thm': '"^thmid^"' not in '"^
neuper@37906
   434
				   (theory2domID thy)^"' (and parents)");
neuper@40836
   435
(*> assoc_thm' (Thy_Info.get_theory "Isac") ("sym_#mult_2_3","6 = 2 * 3");
neuper@37906
   436
val it = "6 = 2 * 3" : thm          
neuper@37906
   437
neuper@40836
   438
> assoc_thm' (Thy_Info.get_theory "Isac") ("add_0_left","");
neuper@37906
   439
val it = "0 + ?z = ?z" : thm
neuper@37906
   440
neuper@40836
   441
> assoc_thm' (Thy_Info.get_theory "Isac") ("sym_real_add_zero_left","");
neuper@37906
   442
val it = "?t = 0 + ?t"  [.] : thm
neuper@37906
   443
neuper@37906
   444
> assoc_thm' HOL.thy ("sym_real_add_zero_left","");
neuper@37965
   445
*** Unknown theorem(s) "add_0_left"
neuper@37906
   446
*** assoc_thm': 'sym_real_add_zero_left' not in 'HOL.thy' (and parents)
neuper@37906
   447
 uncaught exception ERROR*)
neuper@37906
   448
neuper@37906
   449
neuper@37906
   450
fun parse' (thy:theory') (ct:cterm') =
neuper@38041
   451
    case parse (assoc_thy thy) ct of
neuper@37906
   452
	NONE => NONE
neuper@37906
   453
      | SOME ct => SOME ((term2str (term_of ct)):cterm');
neuper@37906
   454
neuper@37906
   455
neuper@37906
   456
(*FIXME 12.8.02: put_asm = true <==> rewrite_inst, rewrite_set_inst
neuper@37906
   457
  thus the argument put_asm  IS NOT NECESSARY -- FIXME        ~~~~~*)
neuper@37906
   458
fun rewrite (thy':theory') (rew_ord:rew_ord') (rls:rls') 
neuper@37906
   459
    (put_asm:bool) (thm:thm') (ct:cterm') =
neuper@37906
   460
(* val (rew_ord, rls, thm, ct) = (rew_ord', id_rls rls', thm', f);
neuper@37906
   461
   *)
neuper@38041
   462
    let val thy = assoc_thy thy';
neuper@37906
   463
    in
neuper@37906
   464
    case rewrite_ thy
neuper@37906
   465
	((the o assoc')(!rew_ord',rew_ord))((#2 o the o assoc')(!ruleset',rls))
neuper@37906
   466
	put_asm ((assoc_thm' thy) thm)
neuper@37906
   467
	((term_of o the o (parse thy)) ct) of
neuper@37906
   468
	NONE => NONE
neuper@37906
   469
      | SOME (t, ts) => SOME (term2str t, terms2str ts)
neuper@37906
   470
    end;
neuper@37906
   471
neuper@37906
   472
(*
neuper@38058
   473
val thy     = "RatArith";
neuper@37906
   474
val rew_ord = "dummy_ord"; 
neuper@37906
   475
> val rls     = "eval_rls";
neuper@37906
   476
val put_asm = true; 
neuper@37906
   477
val thm     = ("square_equation_left","");
neuper@37906
   478
val ct      = "sqrt(#9+#4*x)=sqrt x + sqrt(#-3+x)";
neuper@37906
   479
neuper@38041
   480
val Zthy     = assoc_thy thy;
neuper@37906
   481
val Zrew_ord = ((the o assoc')(!rew_ord',rew_ord)); 
neuper@37906
   482
val Zrls     = ((the o assoc')(!ruleset',rls));
neuper@37906
   483
val Zput_asm = put_asm; 
neuper@37906
   484
val Zthm     = ((the o (assoc'_thm' thy)) thm);
neuper@38041
   485
val Zct      = ((the o (parse (assoc_thy thy))) ct);
neuper@37906
   486
neuper@37906
   487
rewrite_ Zthy Zrew_ord Zrls Zput_asm Zthm Zct;
neuper@37906
   488
neuper@37906
   489
 use"Isa99/interface_ME_ISA.sml";
neuper@37906
   490
*)
neuper@37906
   491
neuper@37906
   492
(*FIXME 12.8.02: put_asm = true <==> rewrite_inst, rewrite_set_inst
neuper@37906
   493
  thus the argument put_asm  IS NOT NECESSARY -- FIXME        ~~~~~*)
neuper@37906
   494
fun rewrite_set (thy':theory') (put_asm:bool)
neuper@37906
   495
    (rls:rls') (ct:cterm') =
neuper@38041
   496
    let val thy = (assoc_thy thy');
neuper@37906
   497
    in
neuper@37906
   498
    case rewrite_set_ thy put_asm ((#2 o the o assoc')(!ruleset',rls))
neuper@37906
   499
    ((term_of o the o (parse thy)) ct) of
neuper@37906
   500
	NONE => NONE
neuper@37906
   501
      | SOME (t, ts) => SOME (term2str t, terms2str ts)
neuper@37906
   502
    end;
neuper@37906
   503
neuper@37906
   504
(*evaluate list-expressions
neuper@37906
   505
  should work on term, and stand in Isa99/rewrite-parse.sml, 
neuper@37906
   506
  but there list_rls <- eval_binop is not yet defined*)
neuper@37906
   507
(*fun eval_listexpr' ct = 
neuper@38058
   508
    let val rew = rewrite_set "ListC" false "list_rls" ct;
neuper@37906
   509
    in case rew of 
neuper@37906
   510
	   SOME (res,_) => res
neuper@37906
   511
	 | NONE => ct end;-----------------30.9.02---*)
neuper@37906
   512
fun eval_listexpr_ thy srls t =
neuper@37906
   513
(* val (thy,            srls, t) = 
neuper@37906
   514
       ((assoc_thy th), sr,  (subst_atomic (upd_env_opt E (a,v)) t));
neuper@37906
   515
   *) 
neuper@37906
   516
    let val rew = rewrite_set_ thy false srls t;
neuper@37906
   517
    in case rew of 
neuper@37906
   518
	   SOME (res,_) => res
neuper@37906
   519
	 | NONE => t end;
neuper@37906
   520
neuper@37906
   521
neuper@37906
   522
fun get_calculation' (thy:theory') op_ (ct:cterm') =
neuper@38041
   523
   case get_calculation_ (assoc_thy thy) op_
neuper@37906
   524
    ((uminus_to_string o term_of o the o 
neuper@38041
   525
      (parse (assoc_thy thy))) ct) of
neuper@37906
   526
	NONE => NONE
neuper@37906
   527
      | SOME (thmid, thm) => 
neuper@37906
   528
	    SOME ((thmid, string_of_thmI thm):thm');
neuper@37906
   529
neuper@37906
   530
fun calculate (thy':theory') op_ (ct:cterm') =
neuper@38041
   531
    let val thy = (assoc_thy thy');
neuper@37906
   532
    in
neuper@37906
   533
	case calculate_ thy op_
neuper@37906
   534
			((term_of o the o (parse thy)) ct) of
neuper@37906
   535
	    NONE => NONE
neuper@37906
   536
	  | SOME (ct,(thmID,thm)) => 
neuper@37906
   537
	    SOME (term2str ct, 
neuper@37906
   538
		  (thmID, string_of_thmI thm):thm')
neuper@37906
   539
    end;
neuper@37906
   540
(*
neuper@37906
   541
fun instantiate'' thy' subs ((thmid,ct'):thm') = 
neuper@40836
   542
  let val thmid_ = implode ("#"::(Symbol.explode thmid))  (*see type thm'*)
neuper@37906
   543
  in (thmid_, (string_of_thmI o (read_instantiate subs)) 
neuper@37906
   544
      ((the o (assoc_thm' thy')) (thmid_,ct'))):thm' end;
neuper@37906
   545
neuper@37906
   546
fun instantiate_rls' thy' subs (rls:rls') = 
neuper@37906
   547
    rls2rls' (instantiate_rls subs ((the o (assoc_rls thy')) rls)):rlsdat';
neuper@37906
   548
neuper@37906
   549
... problem with these functions: 
neuper@37906
   550
> val thm = mk_thm thy "(bdv + a = b) = (bdv = b - a)";
neuper@37906
   551
val thm = "(bdv + a = b) = (bdv = b - a)" : thm
neuper@37906
   552
> show_types:=true; thm;    
neuper@37906
   553
val it = "((bdv::'a) + (a::'a) = (b::'a)) = (bdv = b - a)" : thm
neuper@37906
   554
... and this doesn't match because of too general typing (?!)
neuper@37906
   555
    and read_insitantiate doesn't instantiate the types (?!)
neuper@37906
   556
=== solutions:
neuper@37906
   557
(1) hard-coded type-instantiation ("'a", "RatArith.rat")
neuper@37906
   558
(2) instantiate', instantiate ... no help by isabelle-users@ !!!
neuper@37906
   559
=== conclusion:
neuper@37906
   560
    rewrite_inst, rewrite_set_inst circumvent the problem,
neuper@37906
   561
    according functions out-commented with 'instantiate''
neuper@37906
   562
*)
neuper@37906
   563
neuper@37906
   564
(* instantiate''
neuper@37906
   565
fun instantiate'' thy' subs ((thmid,ct'):thm') = 
neuper@37906
   566
  let 
neuper@40836
   567
    val thmid_ = implode ("#"::(Symbol.explode thmid));  (*see type thm'*)
neuper@38041
   568
    val thy = assoc_thy thy';
neuper@37906
   569
    val typs = map (#T o rep_cterm o the o (parse thy)) 
neuper@37906
   570
      ((snd o split_list) subs);
neuper@37906
   571
    val ctyps = map 
neuper@37906
   572
      ((ctyp_of (sign_of thy)) o #T o rep_cterm o the o (parse thy)) 
neuper@37906
   573
      ((snd o split_list) subs);
neuper@37906
   574
neuper@38058
   575
> val thy' = "RatArith";
neuper@37906
   576
> val subs = [("bdv","x::rat"),("zzz","z::nat")];
neuper@38041
   577
> (the o (parse (assoc_thy thy'))) "x::rat";
neuper@38041
   578
> (#T o rep_cterm o the o (parse (assoc_thy thy')));
neuper@37906
   579
neuper@37906
   580
> val ctyp = ((ctyp_of (sign_of thy)) o #T o rep_cterm o the o 
neuper@38041
   581
	      (parse (assoc_thy thy'))) "x::rat";
neuper@37906
   582
> val bdv = (the o (parse thy)) "bdv";
neuper@37906
   583
> val x   = (the o (parse thy)) "x";
neuper@37906
   584
> (instantiate ([(("'a",0),ctyp)],[(bdv,x)]) isolate_bdv_add)
neuper@37906
   585
      handle e => print_exn e;
neuper@37906
   586
uncaught exception THM
neuper@37906
   587
  raised at: thm.ML:1085.18-1085.69
neuper@37906
   588
             thm.ML:1092.34
neuper@37906
   589
             goals.ML:536.61
neuper@37906
   590
neuper@37906
   591
> val bdv = (the o (parse thy)) "bdv::nat";
neuper@37906
   592
> val x   = (the o (parse thy)) "x::nat";
neuper@37906
   593
> (instantiate ([(("'a",0),ctyp)],[(bdv,x)]) isolate_bdv_add)
neuper@37906
   594
      handle e => print_exn e;
neuper@37906
   595
uncaught exception THM
neuper@37906
   596
  raised at: thm.ML:1085.18-1085.69
neuper@37906
   597
             thm.ML:1092.34
neuper@37906
   598
             goals.ML:536.61
neuper@37906
   599
neuper@37906
   600
> (instantiate' [SOME ctyp] [] isolate_bdv_add)
neuper@37906
   601
      handle e => print_exn e;      
neuper@37906
   602
uncaught exception TYPE
neuper@37906
   603
  raised at: drule.ML:613.13-615.44
neuper@37906
   604
             goals.ML:536.61
neuper@37906
   605
neuper@37906
   606
> val repct = (rep_cterm o the o (parse ((the o assoc')(!theory',thy')))) "x::rat";
neuper@37906
   607
*)
neuper@37906
   608
neuper@37906
   609
(*FIXME 12.8.02: put_asm = true <==> rewrite_inst, rewrite_set_inst
neuper@37906
   610
  thus the argument put_asm  IS NOT NECESSARY -- FIXME        ~~~~~*)
neuper@37906
   611
fun rewrite_inst (thy':theory') (rew_ord:rew_ord') (rls:rls') 
neuper@37906
   612
  (put_asm:bool) subs (thm:thm') (ct:cterm') =
neuper@37906
   613
  let
neuper@38041
   614
    val thy = assoc_thy thy';
neuper@37906
   615
    val thm = assoc_thm' thy thm; (*28.10.02*)
neuper@37906
   616
    (*val subthm = read_instantiate subs ((assoc_thm' thy) thm)*)
neuper@37906
   617
  in
neuper@37906
   618
    case rewrite_ thy
neuper@37906
   619
      ((the o assoc')(!rew_ord',rew_ord)) ((#2 o the o assoc')(!ruleset',rls))
neuper@37906
   620
      put_asm (*sub*)thm ((term_of o the o (parse thy)) ct) of
neuper@37906
   621
      NONE => NONE
neuper@37906
   622
    | SOME (ctm, ctms) => 
neuper@37906
   623
      SOME ((term2str ctm):cterm', (map term2str ctms):cterm' list)
neuper@37906
   624
  end;
neuper@37906
   625
neuper@37906
   626
(*FIXME 12.8.02: put_asm = true <==> rewrite_inst, rewrite_set_inst
neuper@37906
   627
  thus the argument put_asm  IS NOT NECESSARY -- FIXME        ~~~~~*)
neuper@37906
   628
fun rewrite_set_inst (thy':theory') (put_asm:bool)
neuper@37906
   629
  subs' (rls:rls') (ct:cterm') =
neuper@37906
   630
  let
neuper@38041
   631
    val thy = assoc_thy thy';
neuper@37906
   632
    val rls = assoc_rls rls
neuper@37906
   633
    val subst = subs'2subst thy subs'
neuper@37906
   634
    (*val subrls = instantiate_rls subs ((the o assoc')(!ruleset',rls))*)
neuper@37906
   635
  in case rewrite_set_inst_ thy put_asm subst (*sub*)rls
neuper@37906
   636
			    ((term_of o the o (parse thy)) ct) of
neuper@37906
   637
	 NONE => NONE
neuper@37906
   638
       | SOME (t, ts) => SOME (term2str t, terms2str ts)
neuper@37906
   639
  end;
neuper@37906
   640
neuper@37906
   641
neuper@37906
   642
(*vor check_elementwise: SqRoot_eval_rls .. wie *_simplify ?! TODO *)
neuper@41928
   643
fun eval_true' (thy':theory') (rls':rls') (Const ("HOL.True",_)) = true
neuper@37906
   644
neuper@37906
   645
  | eval_true' (thy':theory') (rls':rls') (t:term) =
neuper@38050
   646
(* val thy'="Isac"; val rls'="eval_rls"; val t=hd pres';
neuper@37906
   647
   *)
neuper@37906
   648
    let val ct' = term2str t;
neuper@37906
   649
    in case rewrite_set thy' false rls' ct' of
neuper@41928
   650
	   SOME ("HOL.True",_) => true
neuper@37906
   651
	 | _ => false 
neuper@37906
   652
    end;
neuper@41928
   653
fun eval_true_ _ _ (Const ("HOL.True",_)) = true
neuper@37906
   654
  | eval_true_ (thy':theory') rls t =
neuper@37906
   655
    case rewrite_set_ (assoc_thy thy') false rls t of
neuper@41928
   656
	   SOME (Const ("HOL.True",_),_) => true
neuper@37906
   657
	 | _ => false;
neuper@37906
   658
neuper@37906
   659
(*
neuper@37906
   660
val test_rls = 
neuper@37906
   661
  Rls{preconds = [], rew_ord = ("sqrt_right",sqrt_right), 
neuper@37906
   662
      rules = [Calc ("matches",eval_matches "")
neuper@37906
   663
	       ],
neuper@48763
   664
      scr = Prog ((term_of o the o (parse thy)) 
neuper@37906
   665
      "empty_script")
neuper@37906
   666
      }:rls;      
neuper@37906
   667
neuper@37906
   668
neuper@37906
   669
neuper@40836
   670
  rewrite_set_ (Thy_Info.get_theory "Isac") eval_rls false test_rls 
neuper@37906
   671
        ((the o (parse thy)) "matches (?a = ?b) (x = #0)");
neuper@37906
   672
  val xxx = (term_of o the o (parse thy)) 
neuper@37906
   673
	       "matches (?a = ?b) (x = #0)";
neuper@37906
   674
  eval_matches """" xxx thy;
neuper@37906
   675
SOME ("matches (?a = ?b) (x + #1 + #-1 * #2 = #0) = True",
neuper@41924
   676
     Const ("HOL.Trueprop","bool => prop") $ (Const # $ (# $ #) $ Const (#,#)))
neuper@37906
   677
neuper@37906
   678
neuper@37906
   679
neuper@40836
   680
  rewrite_set_ (Thy_Info.get_theory "Isac") eval_rls false eval_rls 
neuper@37906
   681
        ((the o (parse thy)) "contains_root (sqrt #0)");
neuper@41928
   682
val it = SOME ("HOL.True",[]) : (cterm * cterm list) option
neuper@37906
   683
    
neuper@37906
   684
*)
neuper@37906
   685
neuper@37906
   686
neuper@37906
   687
(*----------WN:16.5.03 stuff below considered illdesigned, thus coded from scratch in appl.sml fun check_elementwise
neuper@37906
   688
datatype det = TRUE  | FALSE | INDET;(*FIXXME.WN:16.5.03
neuper@37906
   689
				     introduced with quick-and-dirty code*)
neuper@37906
   690
fun determine dts =
neuper@37906
   691
    let val false_indet = 
neuper@37906
   692
	    filter_out ((curry op= TRUE) o (#1:det * term -> det)) dts
neuper@37906
   693
        val ts = map (#2: det * term -> term) dts
neuper@37906
   694
    in if nil = false_indet then (TRUE, ts)
neuper@37906
   695
       else if nil = filter ((curry op= FALSE) o (#1:det * term -> det))
neuper@37906
   696
			    false_indet
neuper@37906
   697
       then (INDET, ts)
neuper@37906
   698
       else (FALSE, ts) end;
neuper@48760
   699
(* val dts = [(INDET,e_term), (FALSE,@{term False}), 
neuper@48760
   700
	      (INDET,e_term), (TRUE,@{term True})];
neuper@37906
   701
  determine dts;
neuper@37906
   702
val it =
neuper@37906
   703
  (FALSE,
neuper@41928
   704
   [Const ("empty","'a"),Const ("HOL.False","bool"),Const ("empty","'a"),
neuper@41928
   705
    Const ("HOL.True","bool")]) : det * term list*)
neuper@37906
   706
neuper@37906
   707
fun eval__indet_ thy cs rls = (*FIXXME.WN:16.5.03 pull into eval__true_, update check (check_elementwise), and regard eval_true_ + eval_true*)
neuper@48760
   708
if cs = [@{term True}] orelse cs = [] then (TRUE, [])
neuper@48760
   709
    else if cs = [@{term False}] then (FALSE, cs)
neuper@37906
   710
    else
neuper@37906
   711
	let fun eval t = 
neuper@37906
   712
		let val taopt = rewrite__set_ thy 1 false [] rls t
neuper@37906
   713
		in case taopt of
neuper@37906
   714
		       SOME (t,_) =>
neuper@48760
   715
		       if t = @{term True} then (TRUE, t)
neuper@48760
   716
		       else if t = @{term False} then (FALSE, t)
neuper@37906
   717
		       else (INDET, t)
neuper@37906
   718
		     | NONE => (INDET, t) end
neuper@37906
   719
	in (determine o (map eval)) cs end;
neuper@37906
   720
WN.16.5.0-------------------------------------------------------------*)