src/Tools/isac/Interpret/script.sml
author Walther Neuper <neuper@ist.tugraz.at>
Sun, 15 May 2011 11:32:41 +0200
branchdecompose-isar
changeset 41992 1ada058e92bc
parent 41990 99e83a0bea44
child 41996 4e81dae36cab
permissions -rw-r--r--
intermed. ctxt ..: checked all occurrences of ProofContext.init_global
neuper@37906
     1
(* interpreter for scripts
neuper@37906
     2
   (c) Walther Neuper 2000
neuper@37906
     3
neuper@37906
     4
use"ME/script.sml";
neuper@37906
     5
use"script.sml";
neuper@37906
     6
*)
neuper@37906
     7
signature INTERPRETER =
neuper@37906
     8
sig
neuper@37906
     9
  (*type ets (list of executed tactics) see sequent.sml*)
neuper@37906
    10
neuper@37906
    11
  datatype locate
neuper@37906
    12
    = NotLocatable
neuper@37906
    13
    | Steps of (tac_ * mout * ptree * pos' * cid * safe (* ets*)) list
neuper@37906
    14
(*    | ToDo of ets 28.4.02*)
neuper@37906
    15
neuper@37906
    16
  (*diss: next-tactic-function*)
neuper@37906
    17
  val next_tac : theory' -> ptree * pos' -> metID -> scr -> ets -> tac_
neuper@37906
    18
  (*diss: locate-function*)
neuper@37906
    19
  val locate_gen : theory'
neuper@37906
    20
                   -> tac_
neuper@37906
    21
                      -> ptree * pos' -> scr * rls -> ets -> loc_ -> locate
neuper@37906
    22
neuper@37906
    23
  val sel_rules : ptree -> pos' -> tac list
neuper@37906
    24
  val init_form : scr -> ets -> loc_ * term option (*FIXME not up to date*)
neuper@37906
    25
  val formal_args : term -> term list
neuper@37906
    26
neuper@37906
    27
  (*shift to library ...*)
neuper@37906
    28
  val inst_abs : theory' -> term -> term
neuper@37906
    29
  val itms2args : metID -> itm list -> term list
neuper@37906
    30
  val user_interrupt : loc_ * (tac_ * env * env * term * term * safe)
neuper@37906
    31
  (*val empty : term*) 
neuper@37906
    32
end 
neuper@37906
    33
neuper@37906
    34
neuper@37906
    35
neuper@37906
    36
neuper@37906
    37
(*
neuper@37906
    38
structure Interpreter : INTERPRETER =
neuper@37906
    39
struct
neuper@37906
    40
*)
neuper@37906
    41
neuper@37906
    42
(*.traces the leaves (ie. non-tactical nodes) of the script
neuper@37906
    43
   found by next_tac.
neuper@37906
    44
   a leaf is either a tactic or an 'exp' in 'let v = expr'
neuper@37906
    45
   where 'exp' does not contain a tactic.*)   
neuper@38006
    46
val trace_script = Unsynchronized.ref false;
neuper@37906
    47
neuper@37906
    48
type step =     (*data for creating a new node in the ptree;
neuper@37906
    49
		 designed for use:
neuper@37906
    50
               	 fun ass* scrstate steps =
neuper@37906
    51
               	 ... case ass* scrstate steps of
neuper@37906
    52
               	     Assoc (scrstate, steps) => ... ass* scrstate steps*)
neuper@37906
    53
    tac_       (*transformed from associated tac*)
neuper@37906
    54
    * mout       (*result with indentation etc.*)
neuper@37906
    55
    * ptree      (*containing node created by tac_ + resp. scrstate*)
neuper@37906
    56
    * pos'       (*position in ptree; ptree * pos' is the proofstate*)
neuper@37906
    57
    * pos' list; (*of ptree-nodes probably cut (by fst tac_)*)
neuper@37906
    58
val e_step = (Empty_Tac_, EmptyMout, EmptyPtree, e_pos',[]:pos' list):step;
neuper@37906
    59
neuper@37906
    60
fun rule2thm' (Thm (id, thm)) = (id, string_of_thmI thm):thm'
neuper@38031
    61
  | rule2thm' r = error ("rule2thm': not defined for "^(rule2str r));
neuper@37906
    62
fun rule2rls' (Rls_ rls) = id_rls rls
neuper@38031
    63
  | rule2rls' r = error ("rule2rls': not defined for "^(rule2str r));
neuper@37906
    64
neuper@37906
    65
(*.makes a (rule,term) list to a Step (m, mout, pt', p', cid) for solve;
neuper@37906
    66
   complicated with current t in rrlsstate.*)
neuper@37906
    67
fun rts2steps steps ((pt,p),(f,f'',rss,rts),(thy',ro,er,pa)) [(r, (f', am))] =
neuper@37906
    68
    let val thy = assoc_thy thy'
neuper@37906
    69
	val m = Rewrite' (thy',ro,er,pa, rule2thm' r, f, (f', am))
neuper@37906
    70
	val is = RrlsState (f',f'',rss,rts)
neuper@37906
    71
	val p = case p of (p',Frm) => p | (p',Res) => (lev_on p',Res)
bonzai@41948
    72
	val (p', cid, mout, pt') = generate1 thy m (is, e_ctxt) p pt
neuper@37906
    73
    in (is, (m, mout, pt', p', cid)::steps) end
neuper@37906
    74
  | rts2steps steps ((pt,p),(f,f'',rss,rts),(thy',ro,er,pa)) 
neuper@37906
    75
	      ((r, (f', am))::rts') =
neuper@37906
    76
    let val thy = assoc_thy thy'
neuper@37906
    77
	val m = Rewrite' (thy',ro,er,pa, rule2thm' r, f, (f', am))
neuper@37906
    78
	val is = RrlsState (f',f'',rss,rts)
neuper@37906
    79
	val p = case p of (p',Frm) => p | (p',Res) => (lev_on p',Res)
bonzai@41948
    80
	val (p', cid, mout, pt') = generate1 thy m (is, e_ctxt) p pt
neuper@37906
    81
    in rts2steps ((m, mout, pt', p', cid)::steps) 
neuper@37906
    82
		 ((pt',p'),(f',f'',rss,rts),(thy',ro,er,pa)) rts' end;
neuper@37906
    83
neuper@37906
    84
neuper@37906
    85
(*. functions for the environment stack .*)
neuper@37906
    86
fun accessenv id es = the (assoc((top es):env, id))
neuper@37906
    87
    handle _ => error ("accessenv: "^(free2str id)^" not in env");
neuper@37906
    88
fun updateenv id vl (es:env stack) = 
neuper@37906
    89
    (push (overwrite(top es, (id, vl))) (pop es)):env stack;
neuper@37906
    90
fun pushenv id vl (es:env stack) = 
neuper@37906
    91
    (push (overwrite(top es, (id, vl))) es):env stack;
neuper@37906
    92
val popenv = pop:env stack -> env stack;
neuper@37906
    93
neuper@37906
    94
neuper@37906
    95
neuper@37906
    96
fun de_esc_underscore str =
neuper@37906
    97
  let fun scan [] = []
neuper@37906
    98
	| scan (s::ss) = if s = "'" then (scan ss)
neuper@37906
    99
			 else (s::(scan ss))
neuper@40836
   100
  in (implode o scan o Symbol.explode) str end;
neuper@37906
   101
(*
neuper@37906
   102
> val str = "Rewrite_Set_Inst";
neuper@37906
   103
> val esc = esc_underscore str;
neuper@37906
   104
val it = "Rewrite'_Set'_Inst" : string
neuper@37906
   105
> val des = de_esc_underscore esc;
neuper@37906
   106
 val des = de_esc_underscore esc;*)
neuper@37906
   107
neuper@37906
   108
(*go at a location in a script and fetch the contents*)
neuper@37906
   109
fun go [] t = t
neuper@37906
   110
  | go (D::p) (Abs(s,ty,t0)) = go (p:loc_) t0
neuper@37906
   111
  | go (L::p) (t1 $ t2) = go p t1
neuper@37906
   112
  | go (R::p) (t1 $ t2) = go p t2
neuper@38031
   113
  | go l _ = error ("go: no "^(loc_2str l));
neuper@37906
   114
(*
neuper@37906
   115
> val t = (term_of o the o (parse thy)) "a+b";
neuper@37906
   116
val it = Const (#,#) $ Free (#,#) $ Free ("b","RealDef.real") : term
neuper@37906
   117
> val plus_a = go [L] t; 
neuper@37906
   118
> val b = go [R] t; 
neuper@37906
   119
> val plus = go [L,L] t; 
neuper@37906
   120
> val a = go [L,R] t;
neuper@37906
   121
neuper@37906
   122
> val t = (term_of o the o (parse thy)) "a+b+c";
neuper@37906
   123
val t = Const (#,#) $ (# $ # $ Free #) $ Free ("c","RealDef.real") : term
neuper@37906
   124
> val pl_pl_a_b = go [L] t; 
neuper@37906
   125
> val c = go [R] t; 
neuper@37906
   126
> val a = go [L,R,L,R] t; 
neuper@37906
   127
> val b = go [L,R,R] t; 
neuper@37906
   128
*)
neuper@37906
   129
neuper@37906
   130
neuper@37906
   131
(* get a subterm t with test t, and record location *)
neuper@37906
   132
fun get l test (t as Const (s,T)) = 
neuper@37926
   133
    if test t then SOME (l,t) else NONE
neuper@37906
   134
  | get l test (t as Free (s,T)) = 
neuper@37926
   135
    if test t then SOME (l,t) else NONE 
neuper@37906
   136
  | get l test (t as Bound n) =
neuper@37926
   137
    if test t then SOME (l,t) else NONE 
neuper@37906
   138
  | get l test (t as Var (s,T)) =
neuper@37926
   139
    if test t then SOME (l,t) else NONE
neuper@37906
   140
  | get l test (t as Abs (s,T,body)) =
neuper@37926
   141
    if test t then SOME (l:loc_,t) else get ((l@[D]):loc_) test body
neuper@37906
   142
  | get l test (t as t1 $ t2) =
neuper@37926
   143
    if test t then SOME (l,t) 
neuper@37906
   144
    else case get (l@[L]) test t1 of 
neuper@37926
   145
      NONE => get (l@[R]) test t2
neuper@37926
   146
    | SOME (l',t') => SOME (l',t');
neuper@37906
   147
(*18.6.00
neuper@37906
   148
> val sss = ((term_of o the o (parse thy))
neuper@37906
   149
  "Script Solve_root_equation (eq_::bool) (v_::real) (err_::bool) =\
neuper@37906
   150
   \ (let e_ = Try (Rewrite square_equation_left True eq_) \
neuper@37906
   151
   \  in [e_])");
neuper@37906
   152
          ______ compares head_of !!
neuper@41968
   153
> get [] (eq_str "HOL.Let") sss;            [R]
neuper@37906
   154
> get [] (eq_str "Script.Try") sss;     [R,L,R]
neuper@37906
   155
> get [] (eq_str "Script.Rewrite") sss; [R,L,R,R]
neuper@41928
   156
> get [] (eq_str "HOL.True") sss;           [R,L,R,R,L,R]
neuper@37906
   157
> get [] (eq_str "e_") sss;             [R,R]
neuper@37906
   158
*)
neuper@37906
   159
neuper@37930
   160
fun test_negotiable t = 
neuper@37937
   161
    member op = (!negotiable) 
neuper@40836
   162
           ((strip_thy o (term_str (Thy_Info.get_theory "Script")) o head_of) t);
neuper@37906
   163
neuper@37906
   164
(*.get argument of first stactic in a script for init_form.*)
neuper@37906
   165
fun get_stac thy (h $ body) =
neuper@37906
   166
  let
neuper@37906
   167
    fun get_t y (Const ("Script.Seq",_) $ e1 $ e2) a = 
neuper@37926
   168
    	(case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   169
      | get_t y (Const ("Script.Seq",_) $ e1 $ e2 $ a) _ = 
neuper@37926
   170
    	(case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   171
      | get_t y (Const ("Script.Try",_) $ e) a = get_t y e a
neuper@37906
   172
      | get_t y (Const ("Script.Try",_) $ e $ a) _ = get_t y e a
neuper@37906
   173
      | get_t y (Const ("Script.Repeat",_) $ e) a = get_t y e a
neuper@37906
   174
      | get_t y (Const ("Script.Repeat",_) $ e $ a) _ = get_t y e a
neuper@37906
   175
      | get_t y (Const ("Script.Or",_) $e1 $ e2) a =
neuper@37926
   176
    	(case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   177
      | get_t y (Const ("Script.Or",_) $e1 $ e2 $ a) _ =
neuper@37926
   178
    	(case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   179
      | get_t y (Const ("Script.While",_) $ c $ e) a = get_t y e a
neuper@37906
   180
      | get_t y (Const ("Script.While",_) $ c $ e $ a) _ = get_t y e a
neuper@37906
   181
      | get_t y (Const ("Script.Letpar",_) $ e1 $ Abs (_,_,e2)) a = 
neuper@37926
   182
    	(case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@41968
   183
    (*| get_t y (Const ("HOL.Let",_) $ e1 $ Abs (_,_,e2)) a =
neuper@38015
   184
    	(tracing("get_t: Let e1= "^(term2str e1)^", e2= "^(term2str e2));
neuper@37926
   185
	 case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   186
      | get_t y (Abs (_,_,e)) a = get_t y e a*)
neuper@41968
   187
      | get_t y (Const ("HOL.Let",_) $ e1 $ Abs (_,_,e2)) a =
neuper@37906
   188
    	get_t y e1 a (*don't go deeper without evaluation !*)
neuper@37926
   189
      | get_t y (Const ("If",_) $ c $ e1 $ e2) a = NONE
neuper@37926
   190
    	(*(case get_t y e1 a of NONE => get_t y e2 a | la => la)*)
neuper@37906
   191
    
neuper@37926
   192
      | get_t y (Const ("Script.Rewrite",_) $ _ $ _ $ a) _ = SOME a
neuper@37926
   193
      | get_t y (Const ("Script.Rewrite",_) $ _ $ _    ) a = SOME a
neuper@37926
   194
      | get_t y (Const ("Script.Rewrite'_Inst",_) $ _ $ _ $ _ $ a) _ = SOME a
neuper@37926
   195
      | get_t y (Const ("Script.Rewrite'_Inst",_) $ _ $ _ $ _ )    a = SOME a
neuper@37926
   196
      | get_t y (Const ("Script.Rewrite'_Set",_) $ _ $ _ $ a) _ = SOME a
neuper@37926
   197
      | get_t y (Const ("Script.Rewrite'_Set",_) $ _ $ _ )    a = SOME a
neuper@37926
   198
      | get_t y (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ _ $ _ $a)_ =SOME a
neuper@37926
   199
      | get_t y (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ _ $ _ )  a =SOME a
neuper@37926
   200
      | get_t y (Const ("Script.Calculate",_) $ _ $ a) _ = SOME a
neuper@37926
   201
      | get_t y (Const ("Script.Calculate",_) $ _ )    a = SOME a
neuper@37906
   202
    
neuper@37926
   203
      | get_t y (Const ("Script.Substitute",_) $ _ $ a) _ = SOME a
neuper@37926
   204
      | get_t y (Const ("Script.Substitute",_) $ _ )    a = SOME a
neuper@37906
   205
    
neuper@37926
   206
      | get_t y (Const ("Script.SubProblem",_) $ _ $ _) _ = NONE
neuper@37906
   207
neuper@37906
   208
      | get_t y x _ =  
neuper@38015
   209
	((*tracing ("### get_t yac: list-expr "^(term2str x));*)
neuper@37926
   210
	 NONE)
neuper@37906
   211
in get_t thy body e_term end;
neuper@37906
   212
    
neuper@37906
   213
(*FIXME: get 1st stac by next_stac [] instead of ... ?? 29.7.02*)
neuper@37906
   214
(* val Script sc = scr;
neuper@37906
   215
   *)
neuper@37906
   216
fun init_form thy (Script sc) env =
neuper@37906
   217
  (case get_stac thy sc of
neuper@38053
   218
     NONE => NONE 
neuper@38053
   219
             (*error ("init_form: no 1st stac in "^
neuper@38053
   220
	      (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt thy)) sc))*)
neuper@37926
   221
   | SOME stac => SOME (subst_atomic env stac))
neuper@38031
   222
  | init_form _ _ _ = error "init_form: no match";
neuper@37906
   223
neuper@37906
   224
(* use"ME/script.sml";
neuper@37906
   225
   use"script.sml";
neuper@37906
   226
   *)
neuper@37906
   227
neuper@37906
   228
neuper@37906
   229
neuper@37906
   230
(*the 'iteration-argument' of a stac (args not eval)*)
neuper@37906
   231
fun itr_arg _ (Const ("Script.Rewrite'_Inst",_) $ _ $ _ $ _ $ v) = v
neuper@37906
   232
  | itr_arg _ (Const ("Script.Rewrite",_) $ _ $ _ $ v) = v
neuper@37906
   233
  | itr_arg _ (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ _ $ _ $ v) = v
neuper@37906
   234
  | itr_arg _ (Const ("Script.Rewrite'_Set",_) $ _ $ _ $ v) = v
neuper@37906
   235
  | itr_arg _ (Const ("Script.Calculate",_) $ _ $ v) = v
neuper@37906
   236
  | itr_arg _ (Const ("Script.Check'_elementwise",_) $ consts $ _) = consts
neuper@37906
   237
  | itr_arg _ (Const ("Script.Or'_to'_List",_) $ _) = e_term
neuper@37906
   238
  | itr_arg _ (Const ("Script.Tac",_) $ _) = e_term
neuper@37906
   239
  | itr_arg _ (Const ("Script.SubProblem",_) $ _ $ _) = e_term
neuper@38031
   240
  | itr_arg thy t = error 
neuper@38053
   241
    ("itr_arg not impl. for " ^
neuper@38053
   242
    (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt (assoc_thy thy))) t));
neuper@37906
   243
(* val t = (term_of o the o (parse thy))"Rewrite rroot_square_inv False e_";
neuper@38058
   244
> itr_arg "Script" t;
neuper@37906
   245
val it = Free ("e_","RealDef.real") : term 
neuper@37906
   246
> val t = (term_of o the o (parse thy))"xxx";
neuper@38058
   247
> itr_arg "Script" t;
neuper@37906
   248
*** itr_arg not impl. for xxx
neuper@37906
   249
uncaught exception ERROR
neuper@37906
   250
  raised at: library.ML:1114.35-1114.40*)
neuper@37906
   251
neuper@37906
   252
neuper@37906
   253
(*.get the arguments of the script out of the scripts parsetree.*)
neuper@37906
   254
fun formal_args scr = (fst o split_last o snd o strip_comb) scr;
neuper@37906
   255
(*
neuper@37906
   256
> formal_args scr;
neuper@37906
   257
  [Free ("f_","RealDef.real"),Free ("v_","RealDef.real"),
neuper@37906
   258
   Free ("eqs_","bool List.list")] : term list
neuper@37906
   259
*)
neuper@37906
   260
neuper@37906
   261
(*.get the identifier of the script out of the scripts parsetree.*)
neuper@37906
   262
fun id_of_scr sc = (id_of o fst o strip_comb) sc;
neuper@37906
   263
neuper@37906
   264
neuper@37906
   265
(*WN020526: not clear, when a is available in ass_up for eva-_true*)
neuper@37926
   266
(*WN060906: in "fun handle_leaf" eg. uses "SOME M__"(from some PREVIOUS
neuper@37906
   267
  curried Rewrite) for CURRENT value (which may be different from PREVIOUS);
neuper@37926
   268
  thus "NONE" must be set at the end of currying (ill designed anyway)*)
neuper@37926
   269
fun upd_env_opt env (SOME a, v) = upd_env env (a,v)
neuper@37926
   270
  | upd_env_opt env (NONE, v) = 
neuper@38015
   271
    (tracing("*** upd_env_opt: (NONE,"^(term2str v)^")");env);
neuper@37906
   272
neuper@37906
   273
neuper@37906
   274
type dsc = typ; (*<-> nam..unknow in Descript.thy*)
neuper@37906
   275
fun typ_str (Type (s,_)) = s
neuper@37906
   276
  | typ_str (TFree(s,_)) = s
neuper@37906
   277
  | typ_str (TVar ((s,i),_)) = s^(string_of_int i);
neuper@37906
   278
	     
neuper@37906
   279
(*get the _result_-type of a description*)
neuper@37906
   280
fun dsc_valT (Const (_,(Type (_,[_,T])))) = (strip_thy o typ_str) T;
neuper@37906
   281
(*> val t = (term_of o the o (parse thy)) "equality";
neuper@37906
   282
> val T = type_of t;
neuper@37906
   283
val T = "bool => Tools.una" : typ
neuper@37906
   284
> val dsc = dsc_valT t;
neuper@37906
   285
val dsc = "una" : string
neuper@37906
   286
neuper@37906
   287
> val t = (term_of o the o (parse thy)) "fixedValues";
neuper@37906
   288
> val T = type_of t;
neuper@37906
   289
val T = "bool List.list => Tools.nam" : typ
neuper@37906
   290
> val dsc = dsc_valT t;
neuper@37906
   291
val dsc = "nam" : string*)
neuper@37906
   292
neuper@37906
   293
(*.from penv in itm_ make args for script depending on type of description.*)
neuper@37906
   294
(*6.5.03 TODO: push penv into script -- and drop mk_arg here || drop penv
neuper@37906
   295
  9.5.03 penv postponed: penv = env for script at the moment, (*mk_arg*)*)
neuper@38053
   296
fun mk_arg thy d [] = 
neuper@38053
   297
    error ("mk_arg: no data for " ^
neuper@38053
   298
	   (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt thy)) d))
neuper@37906
   299
  | mk_arg thy d [t] = 
neuper@37906
   300
    (case dsc_valT d of
neuper@37906
   301
	 "una" => [t]
neuper@37906
   302
       | "nam" => 
neuper@37906
   303
	 [case t of
neuper@41922
   304
	      r as (Const ("HOL.eq",_) $ _ $ _) => r
neuper@38053
   305
	    | _ => error ("mk_arg: dsc-typ 'nam' applied to non-equality "^
neuper@38053
   306
		     (Print_Mode.setmp [] (Syntax.string_of_term
neuper@38053
   307
                                               (thy2ctxt thy)) t))]
neuper@38031
   308
       | s => error ("mk_arg: not impl. for "^s))
neuper@37906
   309
    
neuper@37906
   310
  | mk_arg thy d (t::ts) = (mk_arg thy d [t]) @ (mk_arg thy d ts);
neuper@37906
   311
(* 
neuper@37906
   312
 val d = d_in itm_;
neuper@37906
   313
 val [t] = ts_in itm_;
neuper@37906
   314
mk_arg thy
neuper@37906
   315
*)
neuper@37906
   316
neuper@37906
   317
neuper@37906
   318
neuper@37906
   319
neuper@37906
   320
(*.create the actual parameters (args) of script: their order 
neuper@37906
   321
  is given by the order in met.pat .*)
neuper@37906
   322
(*WN.5.5.03: ?: does this allow for different descriptions ???
neuper@37906
   323
             ?: why not taken from formal args of script ???
neuper@37906
   324
!: FIXXXME penv: push it here in itms2args into script-evaluation*)
neuper@37906
   325
(* val (thy, mI, itms) = (thy, metID, itms);
neuper@37906
   326
   *)
neuper@37906
   327
fun itms2args thy mI (itms:itm list) =
neuper@37906
   328
    let val mvat = max_vt itms
neuper@37935
   329
	fun okv mvat (_,vats,b,_,_) = member op = vats mvat andalso b
neuper@37906
   330
	val itms = filter (okv mvat) itms
neuper@37906
   331
	fun test_dsc d (_,_,_,_,itm_) = (d = d_in itm_)
neuper@37906
   332
	fun itm2arg itms (_,(d,_)) =
neuper@37906
   333
	    case find_first (test_dsc d) itms of
neuper@37926
   334
		NONE => 
neuper@38031
   335
		error ("itms2args: '"^term2str d^"' not in itms")
neuper@37926
   336
	      (*| SOME (_,_,_,_,itm_) => mk_arg thy (d_in itm_) (ts_in itm_);
neuper@37906
   337
               penv postponed; presently penv holds already env for script*)
neuper@37926
   338
	      | SOME (_,_,_,_,itm_) => penvval_in itm_
neuper@37906
   339
	fun sel_given_find (s,_) = (s = "#Given") orelse (s = "#Find")
neuper@37906
   340
	val pats = (#ppc o get_met) mI
neuper@37906
   341
    in (flat o (map (itm2arg itms))) pats end;
neuper@37906
   342
(*
neuper@37906
   343
> val sc = ... Solve_root_equation ...
neuper@38058
   344
> val mI = ("Script","sqrt-equ-test");
neuper@37906
   345
> val PblObj{meth={ppc=itms,...},...} = get_obj I pt [];
neuper@37906
   346
> val ts = itms2args thy mI itms;
neuper@38053
   347
> map (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt thy))) ts;
neuper@37906
   348
["sqrt (#9 + #4 * x) = sqrt x + sqrt (#5 + x)","x","#0"] : string list
neuper@37906
   349
*)
neuper@37906
   350
neuper@37906
   351
neuper@37984
   352
(*["BOOL (1+x=2)","REAL x"] --match_ags--> oris 
neuper@37906
   353
  --oris2fmz_vals--> ["equality (1+x=2)","boundVariable x","solutions L"]*)
neuper@37906
   354
fun oris2fmz_vals oris =
neuper@37906
   355
    let fun ori2fmz_vals ((_,_,_,dsc,ts):ori) = 
neuper@37906
   356
	    ((term2str o comp_dts') (dsc, ts), last_elem ts) 
neuper@38031
   357
	    handle _ => error ("ori2fmz_env called with "^terms2str ts)
neuper@37906
   358
    in (split_list o (map ori2fmz_vals)) oris end;
neuper@37906
   359
neuper@37906
   360
(*detour necessary, because generate1 delivers a string-result*)
neuper@37906
   361
fun mout2term thy (Form' (FormKF (_,_,_,_,res))) = 
neuper@37906
   362
  (term_of o the o (parse (assoc_thy thy))) res
neuper@37906
   363
  | mout2term thy (Form' (PpcKF _)) = e_term;(*3.8.01: res of subpbl 
neuper@37906
   364
					   at time of detection in script*)
neuper@37906
   365
neuper@37906
   366
(*.convert a script-tac 'stac' to a tactic 'tac'; if stac is an initac,
neuper@37906
   367
   then convert to a 'tac_' (as required in appy).
neuper@37906
   368
   arg pt:ptree for pushing the thy specified in rootpbl into subpbls.*)
neuper@37906
   369
fun stac2tac_ pt thy (Const ("Script.Rewrite",_) $ Free (thmID,_) $ _ $ f) =
neuper@41984
   370
      let
neuper@41984
   371
        val tid = (de_esc_underscore o strip_thy) thmID
neuper@41984
   372
      in (Rewrite (tid, (string_of_thmI o (assoc_thm' thy)) (tid,"")), Empty_Tac_)
neuper@41984
   373
      end
neuper@37906
   374
neuper@41984
   375
  | stac2tac_ pt thy (Const ("Script.Rewrite'_Inst",_) $ sub $ Free (thmID,_) $ _ $ f) =
neuper@41984
   376
      let
neuper@41984
   377
        val subML = ((map isapair2pair) o isalist2list) sub
neuper@41984
   378
        val subStr = subst2subs subML
neuper@41984
   379
        val tid = (de_esc_underscore o strip_thy) thmID (*4.10.02 unnoetig*)
neuper@41984
   380
      in (Rewrite_Inst (subStr, (tid, (string_of_thmI o (assoc_thm' thy)) (tid,""))), Empty_Tac_)
neuper@41984
   381
      end
neuper@37906
   382
      
neuper@41984
   383
  | stac2tac_ pt thy (Const ("Script.Rewrite'_Set",_) $ Free (rls,_) $ _ $ f) =
neuper@41984
   384
      (Rewrite_Set ((de_esc_underscore o strip_thy) rls), Empty_Tac_)
neuper@37906
   385
neuper@41984
   386
  | stac2tac_ pt thy (Const ("Script.Rewrite'_Set'_Inst",_) $ sub $ Free (rls,_) $ _ $ f) =
neuper@41984
   387
      let
neuper@41984
   388
        val subML = ((map isapair2pair) o isalist2list) sub;
neuper@41984
   389
        val subStr = subst2subs subML;
neuper@41984
   390
      in (Rewrite_Set_Inst (subStr,rls), Empty_Tac_) end
neuper@37906
   391
neuper@37906
   392
  | stac2tac_ pt thy (Const ("Script.Calculate",_) $ Free (op_,_) $ f) =
neuper@41984
   393
      (Calculate op_, Empty_Tac_)
neuper@37906
   394
neuper@37906
   395
  | stac2tac_ pt thy (Const ("Script.Take",_) $ t) =
neuper@41984
   396
      (Take (term2str t), Empty_Tac_)
neuper@37906
   397
neuper@37906
   398
  | stac2tac_ pt thy (Const ("Script.Substitute",_) $ isasub $ arg) =
neuper@41984
   399
      (Substitute ((subte2sube o isalist2list) isasub), Empty_Tac_)
neuper@37906
   400
neuper@37906
   401
  | stac2tac_ pt thy (Const("Script.Check'_elementwise",_) $ _ $ 
neuper@41984
   402
		(set as Const ("Collect",_) $ Abs (_,_,pred))) = 
neuper@41984
   403
      (Check_elementwise (Print_Mode.setmp [] (Syntax.string_of_term 
neuper@41984
   404
                          (thy2ctxt thy)) pred), (*set*)Empty_Tac_)
neuper@37906
   405
neuper@37906
   406
  | stac2tac_ pt thy (Const("Script.Or'_to'_List",_) $ _ ) = 
neuper@41984
   407
      (Or_to_List, Empty_Tac_)
neuper@37906
   408
neuper@41984
   409
    (*12.1.01.for subproblem_equation_dummy in root-equation *)
neuper@37906
   410
  | stac2tac_ pt thy (Const ("Script.Tac",_) $ Free (str,_)) = 
neuper@41984
   411
      (Tac ((de_esc_underscore o strip_thy) str),  Empty_Tac_) 
neuper@37906
   412
neuper@41990
   413
    (*compare "| assod _ (Subproblem'"*)
neuper@37906
   414
  | stac2tac_ pt thy (stac as Const ("Script.SubProblem",_) $
neuper@41983
   415
	  (Const ("Product_Type.Pair",_) $Free (dI',_) $ 
neuper@41983
   416
		 (Const ("Product_Type.Pair",_) $ pI' $ mI')) $ ags') =
neuper@41983
   417
      let
neuper@41983
   418
        val dI = ((implode o drop_last(*.."'"*) o Symbol.explode) dI')(*^""*);
neuper@37906
   419
        val thy = maxthy (assoc_thy dI) (rootthy pt);
neuper@41983
   420
	      val pI = ((map (de_esc_underscore o free2str)) o isalist2list) pI';
neuper@41983
   421
	      val mI = ((map (de_esc_underscore o free2str)) o isalist2list) mI';
neuper@41983
   422
	      val ags = isalist2list ags';
neuper@41983
   423
	      val (pI, pors, mI) = 
neuper@41983
   424
	        if mI = ["no_met"] 
neuper@41983
   425
	        then
neuper@41983
   426
            let
neuper@41983
   427
              val pors = (match_ags thy ((#ppc o get_pbt) pI) ags)
neuper@41983
   428
			          handle ERROR "actual args do not match formal args" 
neuper@41983
   429
				        => (match_ags_msg pI stac ags(*raise exn*); [])
neuper@41983
   430
		          val pI' = refine_ori' pors pI;
neuper@41983
   431
		        in (pI', pors (*refinement over models with diff.prec only*), 
neuper@41983
   432
		            (hd o #met o get_pbt) pI') end
neuper@41983
   433
	        else (pI, (match_ags thy ((#ppc o get_pbt) pI) ags)
neuper@41983
   434
		        handle ERROR "actual args do not match formal args"
neuper@41983
   435
			      => (match_ags_msg pI stac ags(*raise exn*); []), mI);
neuper@37906
   436
        val (fmz_, vals) = oris2fmz_vals pors;
neuper@41983
   437
	      val {cas,ppc,thy,...} = get_pbt pI
neuper@41983
   438
	      val dI = theory2theory' thy (*.take dI from _refined_ pbl.*)
neuper@41983
   439
	      val dI = theory2theory' (maxthy (assoc_thy dI) (rootthy pt));
neuper@41992
   440
        val ctxt = ProofContext.init_global 
neuper@41992
   441
        val ctxt = dI |> Thy_Info.get_theory |> ProofContext.init_global 
neuper@41992
   442
          |> declare_constraints' vals
neuper@41983
   443
	      val hdl =
neuper@41983
   444
          case cas of
neuper@41983
   445
		        NONE => pblterm dI pI
neuper@41983
   446
		      | SOME t => subst_atomic ((vars_of_pbl_' ppc) ~~~ vals) t
neuper@37906
   447
        val f = subpbl (strip_thy dI) pI
neuper@41990
   448
      in (Subproblem (dI, pI),	Subproblem' ((dI, pI, mI), pors, hdl, fmz_, ctxt, f))
neuper@41983
   449
      end
neuper@37906
   450
neuper@38031
   451
  | stac2tac_ pt thy t = error 
neuper@38053
   452
  ("stac2tac_ TODO: no match for " ^
neuper@38053
   453
   (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt thy)) t));
neuper@37906
   454
neuper@37906
   455
fun stac2tac pt thy t = (fst o stac2tac_ pt thy) t;
neuper@37906
   456
neuper@37906
   457
(*test a term for being a _list_ (set ?) of constants; could be more rigorous*)
neuper@37906
   458
fun list_of_consts (Const ("List.list.Cons",_) $ _ $ _) = true
neuper@37906
   459
  | list_of_consts (Const ("List.list.Nil",_)) = true
neuper@37906
   460
  | list_of_consts _ = false;
neuper@37906
   461
(*val ttt = (term_of o the o (parse thy)) "[x=#1,x=#2,x=#3]";
neuper@37906
   462
> list_of_consts ttt;
neuper@37906
   463
val it = true : bool
neuper@37906
   464
> val ttt = (term_of o the o (parse thy)) "[]";
neuper@37906
   465
> list_of_consts ttt;
neuper@37906
   466
val it = true : bool*)
neuper@37906
   467
neuper@37906
   468
neuper@37906
   469
neuper@37906
   470
datatype ass = 
neuper@41983
   471
    Ass of
neuper@41983
   472
      tac_ *   (* SubProblem gets args instantiated in assod *)
neuper@41983
   473
  	  term     (* for itr_arg, result in ets *)
neuper@41983
   474
  | AssWeak of
neuper@41983
   475
      tac_ *
neuper@41983
   476
  	  term     (*for itr_arg,result in ets*)
neuper@41983
   477
  | NotAss;
neuper@37906
   478
neuper@37906
   479
(*.assod: tac_ associated with stac w.r.t. d
neuper@37906
   480
args
neuper@37906
   481
 pt:ptree for pushing the thy specified in rootpbl into subpbls
neuper@37906
   482
returns
neuper@37906
   483
 Ass    : associated: e.g. thmID in stac = thmID in m
neuper@37906
   484
                       +++ arg   in stac = arg   in m
neuper@37906
   485
 AssWeak: weakly ass.:e.g. thmID in stac = thmID in m, //arg//
neuper@37906
   486
 NotAss :             e.g. thmID in stac/=/thmID in m (not =)
neuper@37906
   487
8.01:
neuper@37906
   488
 tac_ SubProblem with args completed from script
neuper@37906
   489
.*)
neuper@37906
   490
fun assod pt d (m as Rewrite_Inst' (thy',rod,rls,put,subs,(thmID,thm),f,(f',asm))) stac =
neuper@41983
   491
      (case stac of
neuper@41983
   492
	       (Const ("Script.Rewrite'_Inst",_) $ subs_ $ Free (thmID_,idT) $b$f_) =>
neuper@41983
   493
	          if thmID = thmID_
neuper@41983
   494
            then 
neuper@41983
   495
	            if f = f_ 
neuper@41983
   496
              then ((*tracing"3### assod ..Ass";*)Ass (m,f')) 
neuper@41983
   497
	            else ((*tracing"3### assod ..AssWeak";*)AssWeak(m, f'))
neuper@41983
   498
	          else ((*tracing"3### assod ..NotAss";*)NotAss)
neuper@41983
   499
       | (Const ("Script.Rewrite'_Set'_Inst",_) $ sub_ $ Free (rls_,_) $_$f_) =>
neuper@41983
   500
	          if contains_rule (Thm (thmID, refl(*dummy*))) (assoc_rls rls_)
neuper@41983
   501
            then 
neuper@41983
   502
	            if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   503
	          else NotAss
neuper@37906
   504
       | _ => NotAss)
neuper@37906
   505
neuper@37906
   506
  | assod pt d (m as Rewrite' (thy,rod,rls,put,(thmID,thm),f,(f',asm))) stac =
neuper@41983
   507
      (case stac of
neuper@41983
   508
	       (t as Const ("Script.Rewrite",_) $ Free (thmID_,idT) $ b $ f_) =>
neuper@41983
   509
	         ((*tracing ("3### assod: stac = " ^ ter2str t);
neuper@41983
   510
	          tracing ("3### assod: f(m)= " ^ term2str f);*)
neuper@41983
   511
	          if thmID = thmID_
neuper@41983
   512
            then 
neuper@41983
   513
	            if f = f_
neuper@41983
   514
              then ((*tracing"3### assod ..Ass";*)Ass (m,f')) 
neuper@41983
   515
	            else 
neuper@41983
   516
                ((*tracing"### assod ..AssWeak";
neuper@41983
   517
		             tracing("### assod: f(m)  = " ^ term2str f);
neuper@41983
   518
		             tracing("### assod: f(stac)= " ^ term2str f_)*)
neuper@41983
   519
		             AssWeak (m,f'))
neuper@41983
   520
	          else ((*tracing"3### assod ..NotAss";*)NotAss))
neuper@37906
   521
       | (Const ("Script.Rewrite'_Set",_) $ Free (rls_,_) $ _ $ f_) =>
neuper@41983
   522
	          if contains_rule (Thm (thmID, refl(*dummy*))) (assoc_rls rls_)
neuper@41983
   523
            then
neuper@41983
   524
	            if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   525
	          else NotAss
neuper@37906
   526
       | _ => NotAss)
neuper@37906
   527
neuper@37906
   528
  | assod pt d (m as Rewrite_Set_Inst' (thy',put,sub,rls,f,(f',asm))) 
neuper@41983
   529
    (Const ("Script.Rewrite'_Set'_Inst",_) $ sub_ $ Free (rls_,_) $ _ $ f_) = 
neuper@41983
   530
      if id_rls rls = rls_ 
neuper@41983
   531
      then 
neuper@41983
   532
        if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   533
      else NotAss
neuper@37906
   534
neuper@37906
   535
  | assod pt d (m as Detail_Set_Inst' (thy',put,sub,rls,f,(f',asm))) 
neuper@41983
   536
    (Const ("Script.Rewrite'_Set'_Inst",_) $ sub_ $ Free (rls_,_) $ _ $ f_) = 
neuper@41983
   537
      if id_rls rls = rls_
neuper@41983
   538
      then 
neuper@41983
   539
        if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   540
      else NotAss
neuper@37906
   541
neuper@37906
   542
  | assod pt d (m as Rewrite_Set' (thy,put,rls,f,(f',asm))) 
neuper@41983
   543
    (Const ("Script.Rewrite'_Set",_) $ Free (rls_,_) $ _ $ f_) = 
neuper@41983
   544
      if id_rls rls = rls_
neuper@41983
   545
      then 
neuper@41983
   546
        if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   547
      else NotAss
neuper@37906
   548
neuper@37906
   549
  | assod pt d (m as Detail_Set' (thy,put,rls,f,(f',asm))) 
neuper@41983
   550
    (Const ("Script.Rewrite'_Set",_) $ Free (rls_,_) $ _ $ f_) = 
neuper@41983
   551
      if id_rls rls = rls_
neuper@41983
   552
      then 
neuper@41983
   553
        if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   554
      else NotAss
neuper@37906
   555
neuper@37906
   556
  | assod pt d (m as Calculate' (thy',op_,f,(f',thm'))) stac =
neuper@41983
   557
      (case stac of
neuper@41983
   558
	       (Const ("Script.Calculate",_) $ Free (op__,_) $ f_) =>
neuper@41983
   559
	         if op_ = op__
neuper@41983
   560
           then
neuper@41983
   561
	           if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   562
	         else NotAss
neuper@41983
   563
       | (Const ("Script.Rewrite'_Set'_Inst",_) $ sub_ $ Free(rls_,_) $_$f_)  => 
neuper@41983
   564
	         if contains_rule (Calc (snd (assoc1 (!calclist', op_)))) (assoc_rls rls_)
neuper@41983
   565
           then
neuper@41983
   566
	           if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   567
	         else NotAss
neuper@37906
   568
       | (Const ("Script.Rewrite'_Set",_) $ Free (rls_, _) $ _ $ f_) =>
neuper@41983
   569
	         if contains_rule (Calc (snd (assoc1 (!calclist', op_)))) (assoc_rls rls_)
neuper@41983
   570
           then
neuper@41983
   571
	           if f = f_ then Ass (m,f') else AssWeak (m,f')
neuper@41983
   572
	         else NotAss
neuper@37906
   573
       | _ => NotAss)
neuper@37906
   574
neuper@37906
   575
  | assod pt _ (m as Check_elementwise' (consts,_,(consts_chkd,_)))
neuper@37906
   576
    (Const ("Script.Check'_elementwise",_) $ consts' $ _) =
neuper@41983
   577
      ((*tracing("### assod Check'_elementwise: consts= "^(term2str consts)^
neuper@37906
   578
	     ", consts'= "^(term2str consts'));
neuper@41983
   579
       atomty consts; atomty consts';*)
neuper@41983
   580
       if consts = consts'
neuper@41983
   581
       then ((*tracing"### assod Check'_elementwise: Ass";*) Ass (m, consts_chkd))
neuper@41983
   582
       else ((*tracing"### assod Check'_elementwise: NotAss";*) NotAss))
neuper@37906
   583
neuper@41983
   584
  | assod pt _ (m as Or_to_List' (ors, list)) (Const ("Script.Or'_to'_List",_) $ _) =
neuper@41983
   585
	    Ass (m, list) 
neuper@37906
   586
neuper@41983
   587
  | assod pt _ (m as Take' term) (Const ("Script.Take",_) $ _) =
neuper@41983
   588
	    Ass (m, term)
neuper@37906
   589
neuper@41983
   590
  | assod pt _ (m as Substitute' (_, _, res)) (Const ("Script.Substitute",_) $ _ $ _) =
neuper@41983
   591
	    Ass (m, res) 
neuper@37906
   592
neuper@41983
   593
  | assod pt _ (m as Tac_ (thy,f,id,f')) (Const ("Script.Tac",_) $ Free (id',_)) =
neuper@41983
   594
      if id = id'
neuper@41983
   595
      then Ass (m, ((term_of o the o (parse thy)) f'))
neuper@41983
   596
      else NotAss
neuper@37906
   597
neuper@41990
   598
    (*compare "| stac2tac_ thy (Const ("Script.SubProblem",_)"*)
neuper@41983
   599
  | assod pt _ (Subproblem' ((domID,pblID,metID),_,_,_,_,f))
neuper@41983
   600
	  (stac as Const ("Script.SubProblem",_) $ (Const ("Product_Type.Pair",_) $
neuper@41983
   601
		 Free (dI',_) $ (Const ("Product_Type.Pair",_) $ pI' $ mI')) $ ags') =
neuper@41983
   602
      let 
neuper@41983
   603
        val dI = ((implode o drop_last(*.."'"*) o Symbol.explode) dI')(*^""*);
neuper@37906
   604
        val thy = maxthy (assoc_thy dI) (rootthy pt);
neuper@41983
   605
	      val pI = ((map (de_esc_underscore o free2str)) o isalist2list) pI';
neuper@41983
   606
	      val mI = ((map (de_esc_underscore o free2str)) o isalist2list) mI';
neuper@41983
   607
	      val ags = isalist2list ags';
neuper@41983
   608
	      val (pI, pors, mI) = 
neuper@41983
   609
	        if mI = ["no_met"] 
neuper@41983
   610
	        then
neuper@41983
   611
            let
neuper@41983
   612
              val pors = (match_ags thy ((#ppc o get_pbt) pI) ags)
neuper@41983
   613
			          handle ERROR "actual args do not match formal args"
neuper@41983
   614
				        => (match_ags_msg pI stac ags(*raise exn*);[]);
neuper@41983
   615
		          val pI' = refine_ori' pors pI;
neuper@41983
   616
		        in (pI', pors (*refinement over models with diff.prec only*), 
neuper@41983
   617
		            (hd o #met o get_pbt) pI')
neuper@41983
   618
            end
neuper@41983
   619
	        else (pI, (match_ags thy ((#ppc o get_pbt) pI) ags)
neuper@41983
   620
		        handle ERROR "actual args do not match formal args"
neuper@41983
   621
			      => (match_ags_msg pI stac ags(*raise exn*);[]), mI);
neuper@37906
   622
        val (fmz_, vals) = oris2fmz_vals pors;
neuper@41983
   623
	      val {cas, ppc, thy,...} = get_pbt pI
neuper@41983
   624
	      val dI = theory2theory' thy (*take dI from _refined_ pbl*)
neuper@41983
   625
	      val dI = theory2theory' (maxthy (assoc_thy dI) (rootthy pt))
neuper@41992
   626
	      val ctxt = dI |> Thy_Info.get_theory |> ProofContext.init_global 
neuper@41992
   627
          |> declare_constraints' vals
neuper@41983
   628
	      val hdl = 
neuper@41983
   629
          case cas of
neuper@41983
   630
		        NONE => pblterm dI pI
neuper@41983
   631
		      | SOME t => subst_atomic ((vars_of_pbl_' ppc) ~~~ vals) t
neuper@37906
   632
        val f = subpbl (strip_thy dI) pI
neuper@41983
   633
      in 
neuper@41983
   634
        if domID = dI andalso pblID = pI
neuper@41990
   635
        then Ass (Subproblem' ((dI, pI, mI), pors, hdl, fmz_, ctxt, f), f) 
neuper@41983
   636
        else NotAss
neuper@41983
   637
      end
neuper@37906
   638
neuper@37906
   639
  | assod pt d m t = 
neuper@41983
   640
      (if (!trace_script) 
neuper@41983
   641
       then tracing("@@@ the 'tac_' proposed to apply does NOT match the leaf found in the script:\n"^
neuper@41983
   642
		     "@@@ tac_ = "^(tac_2str m))
neuper@41983
   643
       else ();
neuper@41983
   644
       NotAss);
neuper@37906
   645
neuper@37906
   646
fun tac_2tac (Refine_Tacitly' (pI,_,_,_,_)) = Refine_Tacitly pI
neuper@37906
   647
  | tac_2tac (Model_Problem' (pI,_,_))      = Model_Problem
neuper@37906
   648
  | tac_2tac (Add_Given' (t,_))             = Add_Given t
neuper@37906
   649
  | tac_2tac (Add_Find' (t,_))              = Add_Find t
neuper@37906
   650
  | tac_2tac (Add_Relation' (t,_))          = Add_Relation t
neuper@37906
   651
 
neuper@37906
   652
  | tac_2tac (Specify_Theory' dI)           = Specify_Theory dI
neuper@37906
   653
  | tac_2tac (Specify_Problem' (dI,_))      = Specify_Problem dI
neuper@37906
   654
  | tac_2tac (Specify_Method' (dI,_,_))     = Specify_Method dI
neuper@37906
   655
  
neuper@37906
   656
  | tac_2tac (Rewrite' (thy,rod,erls,put,(thmID,thm),f,(f',asm))) =
neuper@37906
   657
    Rewrite (thmID,thm)
neuper@37906
   658
neuper@37906
   659
  | tac_2tac (Rewrite_Inst' (thy,rod,erls,put,sub,(thmID,thm),f,(f',asm)))=
neuper@37906
   660
    Rewrite_Inst (subst2subs sub,(thmID,thm))
neuper@37906
   661
neuper@37906
   662
  | tac_2tac (Rewrite_Set' (thy,put,rls,f,(f',asm))) = 
neuper@37906
   663
    Rewrite_Set (id_rls rls)
neuper@37906
   664
neuper@37906
   665
  | tac_2tac (Detail_Set' (thy,put,rls,f,(f',asm))) = 
neuper@37906
   666
    Detail_Set (id_rls rls)
neuper@37906
   667
neuper@37906
   668
  | tac_2tac (Rewrite_Set_Inst' (thy,put,sub,rls,f,(f',asm))) = 
neuper@37906
   669
    Rewrite_Set_Inst (subst2subs sub,id_rls rls)
neuper@37906
   670
neuper@37906
   671
  | tac_2tac (Detail_Set_Inst' (thy,put,sub,rls,f,(f',asm))) = 
neuper@37906
   672
    Detail_Set_Inst (subst2subs sub,id_rls rls)
neuper@37906
   673
neuper@37906
   674
  | tac_2tac (Calculate' (thy,op_,t,(t',thm'))) = Calculate (op_)
neuper@37906
   675
neuper@37906
   676
  | tac_2tac (Check_elementwise' (consts,pred,consts')) =
neuper@37906
   677
    Check_elementwise pred
neuper@37906
   678
neuper@37906
   679
  | tac_2tac (Or_to_List' _) = Or_to_List
neuper@37906
   680
  | tac_2tac (Take' term) = Take (term2str term)
neuper@37906
   681
  | tac_2tac (Substitute' (subte, t, res)) = Substitute (subte2sube subte) 
neuper@37906
   682
neuper@37906
   683
  | tac_2tac (Tac_ (_,f,id,f')) = Tac id
neuper@37906
   684
neuper@41983
   685
  | tac_2tac (Subproblem' ((domID, pblID, _), _, _, _,_ ,_)) = 
neuper@37906
   686
		  Subproblem (domID, pblID)
neuper@37906
   687
  | tac_2tac (Check_Postcond' (pblID, _)) = 
neuper@37906
   688
		  Check_Postcond pblID
neuper@37906
   689
  | tac_2tac Empty_Tac_ = Empty_Tac
neuper@37906
   690
neuper@37906
   691
  | tac_2tac m = 
neuper@38031
   692
  error ("tac_2tac: not impl. for "^(tac_2str m));
neuper@37906
   693
neuper@37906
   694
neuper@37906
   695
neuper@37906
   696
neuper@37906
   697
(** decompose tac_ to a rule and to (lhs,rhs)
neuper@41956
   698
    unly needed                          --- **)
neuper@37906
   699
neuper@37906
   700
val idT = Type ("Script.ID",[]);
neuper@37906
   701
(*val tt = (term_of o the o (parse thy)) "square_equation_left::ID";
neuper@37906
   702
type_of tt = idT;
neuper@37906
   703
val it = true : bool
neuper@37906
   704
*)
neuper@37938
   705
neuper@37906
   706
fun make_rule thy t =
neuper@37938
   707
  let val ct = cterm_of thy (Trueprop $ t)
neuper@38053
   708
  in Thm (Print_Mode.setmp [] (Syntax.string_of_term (thy2ctxt thy))
neuper@38053
   709
                           (term_of ct), make_thm ct) end;
neuper@37906
   710
neuper@37906
   711
(* val (Rewrite_Inst'(thy',rod,rls,put,subs,(thmID,thm),f,(f',asm)))=m;
neuper@37906
   712
   *)
neuper@37906
   713
(*decompose tac_ to a rule and to (lhs,rhs) for ets FIXME.12.03: obsolete!
neuper@37906
   714
 NOTE.12.03: also used for msg 'not locatable' ?!: 'Subproblem' missing !!!
neuper@37906
   715
WN0508 only use in tac_2res, which uses only last return-value*)
neuper@37906
   716
fun rep_tac_ (Rewrite_Inst' 
neuper@37906
   717
		 (thy',rod,rls,put,subs,(thmID,thm),f,(f',asm))) = 
neuper@37906
   718
  let val fT = type_of f;
neuper@37906
   719
    val b = if put then HOLogic.true_const else HOLogic.false_const;
neuper@37906
   720
    val sT = (type_of o fst o hd) subs;
neuper@37906
   721
    val subs' = list2isalist (HOLogic.mk_prodT (sT, sT))
neuper@37906
   722
      (map HOLogic.mk_prod subs);
neuper@37906
   723
    val sT' = type_of subs';
neuper@37906
   724
    val lhs = Const ("Script.Rewrite'_Inst",[sT',idT,(*fT*)bool,fT] ---> fT) 
neuper@37906
   725
      $ subs' $ Free (thmID,idT) $ b $ f;
neuper@37906
   726
  in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
neuper@37906
   727
(*Fehlersuche 25.4.01
neuper@37906
   728
(a)----- als String zusammensetzen:
neuper@38053
   729
ML> term2str f; 
neuper@37906
   730
val it = "d_d x #4 + d_d x (x ^^^ #2 + #3 * x)" : string
neuper@38053
   731
ML> term2str f'; 
neuper@37906
   732
val it = "#0 + d_d x (x ^^^ #2 + #3 * x)" : string
neuper@37906
   733
ML> subs;
neuper@37906
   734
val it = [(Free ("bdv","RealDef.real"),Free ("x","RealDef.real"))] : subst
neuper@37906
   735
> val tt = (term_of o the o (parse thy))
neuper@37906
   736
  "(Rewrite_Inst[(bdv,x)]diff_const False(d_d x #4 + d_d x (x ^^^ #2 + #3 * x)))=(#0 + d_d x (x ^^^ #2 + #3 * x))";
neuper@37906
   737
> atomty tt;
neuper@38053
   738
ML> tracing (term2str tt); 
neuper@37906
   739
(Rewrite_Inst [(bdv,x)] diff_const False d_d x #4 + d_d x (x ^^^ #2 + #3 * x)) =
neuper@37906
   740
 #0 + d_d x (x ^^^ #2 + #3 * x)
neuper@37906
   741
neuper@37906
   742
(b)----- laut rep_tac_:
neuper@37906
   743
> val ttt=HOLogic.mk_eq (lhs,f');
neuper@37906
   744
> atomty ttt;
neuper@37906
   745
neuper@37906
   746
neuper@37906
   747
(*Fehlersuche 1-2Monate vor 4.01:*)
neuper@37906
   748
> val tt = (term_of o the o (parse thy))
neuper@37906
   749
  "Rewrite_Inst[(bdv,x)]square_equation_left True(x=#1+#2)";
neuper@37906
   750
> atomty tt;
neuper@37906
   751
neuper@37906
   752
> val f = (term_of o the o (parse thy)) "x=#1+#2";
neuper@37906
   753
> val f' = (term_of o the o (parse thy)) "x=#3";
neuper@37906
   754
> val subs = [((term_of o the o (parse thy)) "bdv",
neuper@37906
   755
	       (term_of o the o (parse thy)) "x")];
neuper@37906
   756
> val sT = (type_of o fst o hd) subs;
neuper@37906
   757
> val subs' = list2isalist (HOLogic.mk_prodT (sT, sT))
neuper@37906
   758
			      (map HOLogic.mk_prod subs);
neuper@37906
   759
> val sT' = type_of subs';
neuper@37906
   760
> val lhs = Const ("Script.Rewrite'_Inst",[sT',idT,fT,fT] ---> fT) 
neuper@37906
   761
  $ subs' $ Free (thmID,idT) $ HOLogic.true_const $ f;
neuper@37906
   762
> lhs = tt;
neuper@37906
   763
val it = true : bool
neuper@37906
   764
> rep_tac_ (Rewrite_Inst' 
neuper@38058
   765
	       ("Script","tless_true","eval_rls",false,subs,
neuper@37906
   766
		("square_equation_left",""),f,(f',[])));
neuper@37906
   767
*)
neuper@37906
   768
  | rep_tac_ (Rewrite' (thy',rod,rls,put,(thmID,thm),f,(f',asm)))=
neuper@37906
   769
  let 
neuper@37906
   770
    val fT = type_of f;
neuper@37906
   771
    val b = if put then HOLogic.true_const else HOLogic.false_const;
neuper@37906
   772
    val lhs = Const ("Script.Rewrite",[idT,HOLogic.boolT,fT] ---> fT)
neuper@37906
   773
      $ Free (thmID,idT) $ b $ f;
neuper@37906
   774
  in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
neuper@37906
   775
(* 
neuper@37906
   776
> val tt = (term_of o the o (parse thy)) (*____   ____..test*)
neuper@37906
   777
  "Rewrite square_equation_left True (x=#1+#2) = (x=#3)";
neuper@37906
   778
neuper@37906
   779
> val f = (term_of o the o (parse thy)) "x=#1+#2";
neuper@37906
   780
> val f' = (term_of o the o (parse thy)) "x=#3";
neuper@37906
   781
> val Thm (id,thm) = 
neuper@37906
   782
  rep_tac_ (Rewrite' 
neuper@38058
   783
   ("Script","tless_true","eval_rls",false,
neuper@37906
   784
    ("square_equation_left",""),f,(f',[])));
neuper@37926
   785
> val SOME ct = parse thy   
neuper@37906
   786
  "Rewrite square_equation_left True (x=#1+#2)"; 
neuper@37906
   787
> rewrite_ Script.thy tless_true eval_rls true thm ct;
neuper@37926
   788
val it = SOME ("x = #3",[]) : (cterm * cterm list) option
neuper@37906
   789
*)
neuper@37906
   790
  | rep_tac_ (Rewrite_Set_Inst' 
neuper@37906
   791
		 (thy',put,subs,rls,f,(f',asm))) =
neuper@37906
   792
    (e_rule, (e_term, f'))
neuper@37906
   793
(*WN050824: type error ...
neuper@37906
   794
  let val fT = type_of f;
neuper@37906
   795
    val sT = (type_of o fst o hd) subs;
neuper@37906
   796
    val subs' = list2isalist (HOLogic.mk_prodT (sT, sT))
neuper@37906
   797
      (map HOLogic.mk_prod subs);
neuper@37906
   798
    val sT' = type_of subs';
neuper@37906
   799
    val b = if put then HOLogic.true_const else HOLogic.false_const
neuper@37906
   800
    val lhs = Const ("Script.Rewrite'_Set'_Inst",
neuper@37906
   801
		     [sT',idT,fT,fT] ---> fT) 
neuper@37906
   802
      $ subs' $ Free (id_rls rls,idT) $ b $ f;
neuper@37906
   803
  in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end*)
neuper@37906
   804
(* ... vals from Rewrite_Inst' ...
neuper@37906
   805
> rep_tac_ (Rewrite_Set_Inst' 
neuper@38058
   806
	       ("Script",false,subs,
neuper@37906
   807
		"isolate_bdv",f,(f',[])));
neuper@37906
   808
*)
neuper@37906
   809
(* val (Rewrite_Set' (thy',put,rls,f,(f',asm)))=m;
neuper@37906
   810
*)
neuper@37906
   811
  | rep_tac_ (Rewrite_Set' (thy',put,rls,f,(f',asm)))=
neuper@37906
   812
  let val fT = type_of f;
neuper@37906
   813
    val b = if put then HOLogic.true_const else HOLogic.false_const;
neuper@37906
   814
    val lhs = Const ("Script.Rewrite'_Set",[idT,bool,fT] ---> fT) 
neuper@37906
   815
      $ Free (id_rls rls,idT) $ b $ f;
neuper@37906
   816
  in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
neuper@37906
   817
(* 13.3.01:
neuper@37906
   818
val thy = assoc_thy thy';
neuper@37906
   819
val t = HOLogic.mk_eq (lhs,f');
neuper@37906
   820
make_rule thy t;
neuper@37906
   821
--------------------------------------------------
neuper@37906
   822
val lll = (term_of o the o (parse thy)) 
neuper@37906
   823
  "Rewrite_Set SqRoot_simplify False (d_d x (x ^^^ #2 + #3 * x) + d_d x #4)";
neuper@37906
   824
neuper@37906
   825
--------------------------------------------------
neuper@37906
   826
> val f = (term_of o the o (parse thy)) "x=#1+#2";
neuper@37906
   827
> val f' = (term_of o the o (parse thy)) "x=#3";
neuper@37906
   828
> val Thm (id,thm) = 
neuper@37906
   829
  rep_tac_ (Rewrite_Set' 
neuper@38058
   830
   ("Script",false,"SqRoot_simplify",f,(f',[])));
neuper@37906
   831
val id = "(Rewrite_Set SqRoot_simplify True x = #1 + #2) = (x = #3)" : string
neuper@37906
   832
val thm = "(Rewrite_Set SqRoot_simplify True x = #1 + #2) = (x = #3)" : thm
neuper@37906
   833
*)
neuper@37906
   834
  | rep_tac_ (Calculate' (thy',op_,f,(f',thm')))=
neuper@37906
   835
  let val fT = type_of f;
neuper@37906
   836
    val lhs = Const ("Script.Calculate",[idT,fT] ---> fT) 
neuper@37906
   837
      $ Free (op_,idT) $ f
neuper@37906
   838
  in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
neuper@37906
   839
(*
neuper@37906
   840
> val lhs'=(term_of o the o (parse thy))"Calculate plus (#1+#2)";
neuper@37906
   841
  ... test-root-equ.sml: calculate ...
neuper@37922
   842
> val Appl m'=applicable_in p pt (Calculate "PLUS");
neuper@37906
   843
> val (lhs,_)=tac_2etac m';
neuper@37906
   844
> lhs'=lhs;
neuper@37906
   845
val it = true : bool*)
neuper@37906
   846
  | rep_tac_ (Check_elementwise' (t,str,(t',asm)))  = (Erule, (e_term, t'))
neuper@41983
   847
  | rep_tac_ (Subproblem' (_, _, _, _, _, t'))  = (Erule, (e_term, t'))
neuper@37906
   848
  | rep_tac_ (Take' (t'))  = (Erule, (e_term, t'))
neuper@37906
   849
  | rep_tac_ (Substitute' (subst,t,t'))  = (Erule, (t, t'))
neuper@37906
   850
  | rep_tac_ (Or_to_List' (t, t'))  = (Erule, (t, t'))
neuper@38031
   851
  | rep_tac_ m = error ("rep_tac_: not impl.for "^
neuper@37906
   852
				 (tac_2str m));
neuper@37906
   853
neuper@37906
   854
(*"N.3.6.03------
neuper@37906
   855
fun tac_2rule m = (fst o rep_tac_) m;
neuper@37906
   856
fun tac_2etac m = (snd o rep_tac_) m;
neuper@37906
   857
fun tac_2tac m = (fst o snd o rep_tac_) m;*)
neuper@37906
   858
fun tac_2res m = (snd o snd o rep_tac_) m;(*ONLYuse of rep_tac_
neuper@37906
   859
					        FIXXXXME: simplify rep_tac_*)
neuper@37906
   860
neuper@37906
   861
neuper@37906
   862
(*.handle a leaf;
neuper@37906
   863
   a leaf is either a tactic or an 'exp' in 'let v = expr'
neuper@37906
   864
   where 'exp' does not contain a tactic.
neuper@37906
   865
   handling a leaf comprises
neuper@37906
   866
   (1) 'subst_stacexpr' substitute env and complete curried tactic
neuper@37906
   867
   (2) rewrite the leaf by 'srls'
neuper@37906
   868
WN060906 quick and dirty fix: return a' too (for updating E later)
neuper@37906
   869
.*)
neuper@37906
   870
fun handle_leaf call thy srls E a v t =
neuper@37906
   871
    (*WN050916 'upd_env_opt' is a blind copy from previous version*)
neuper@37906
   872
    case subst_stacexpr E a v t of
neuper@37906
   873
	(a', STac stac) => (*script-tactic*)
neuper@37906
   874
	let val stac' = eval_listexpr_ (assoc_thy thy) srls
neuper@37906
   875
			(subst_atomic (upd_env_opt E (a,v)) stac)
neuper@37906
   876
	in (if (!trace_script) 
neuper@38015
   877
	    then tracing ("@@@ "^call^" leaf '"^term2str t^"' ---> STac '"^
neuper@37906
   878
			  term2str stac'^"'")
neuper@37906
   879
	    else ();
neuper@37906
   880
	    (a', STac stac'))
neuper@37906
   881
	end
neuper@37906
   882
      | (a', Expr lexpr) => (*leaf-expression*)
neuper@37906
   883
	let val lexpr' = eval_listexpr_ (assoc_thy thy) srls
neuper@37906
   884
			 (subst_atomic (upd_env_opt E (a,v)) lexpr)
neuper@37906
   885
	in (if (!trace_script) 
neuper@38015
   886
	    then tracing("@@@ "^call^" leaf '"^term2str t^"' ---> Expr '"^
neuper@37906
   887
			 term2str lexpr'^"'")
neuper@37906
   888
	    else ();
neuper@37906
   889
	    (a', Expr lexpr'))
neuper@37906
   890
	end;
neuper@37906
   891
neuper@37906
   892
neuper@37906
   893
neuper@37906
   894
(** locate an applicable stactic in a script **)
neuper@37906
   895
neuper@37906
   896
datatype assoc = (*ExprVal in the sense of denotational semantics*)
neuper@37906
   897
  Assoc of     (*the stac is associated, strongly or weakly*)
neuper@37906
   898
  scrstate *       (*the current; returned for next_tac etc. outside ass* *)  
neuper@37906
   899
  (step list)    (*list of steps done until associated stac found;
neuper@37906
   900
	           initiated with the data for doing the 1st step,
neuper@37906
   901
                   thus the head holds these data further on,
neuper@37906
   902
		   while the tail holds steps finished (incl.scrstate in ptree)*)
neuper@37906
   903
| NasApp of   (*stac not associated, but applicable, ptree-node generated*)
neuper@37906
   904
  scrstate * (step list)
neuper@37906
   905
| NasNap of     (*stac not associated, not applicable, nothing generated;
neuper@37906
   906
	         for distinction in Or, for leaving iterations, leaving Seq,
neuper@37906
   907
		 evaluate scriptexpressions*)
neuper@37906
   908
  term * env;
neuper@37906
   909
fun assoc2str (Assoc     _) = "Assoc"
neuper@37906
   910
  | assoc2str (NasNap  _) = "NasNap"
neuper@37906
   911
  | assoc2str (NasApp _) = "NasApp";
neuper@37906
   912
neuper@37906
   913
neuper@37906
   914
datatype asap = (*arg. of assy _only_ for distinction w.r.t. Or*)
neuper@37906
   915
  Aundef   (*undefined: set only by (topmost) Or*)
neuper@37906
   916
| AssOnly  (*do not execute appl stacs - there could be an associated
neuper@37906
   917
	     in parallel Or-branch*)
neuper@37906
   918
| AssGen;  (*no Ass(Weak) found within Or, thus 
neuper@37906
   919
             search for _applicable_ stacs, execute and generate pt*)
neuper@37906
   920
(*this constructions doesnt allow arbitrary nesting of Or !!!*)
neuper@37906
   921
neuper@37906
   922
neuper@37906
   923
(*assy, ass_up, astep_up scanning for locate_gen at stactic in a script.
neuper@37906
   924
  search is clearly separated into (1)-(2):
neuper@37906
   925
  (1) assy is recursive descent;
neuper@37906
   926
  (2) ass_up resumes interpretation at a location somewhere in the script;
neuper@37906
   927
      astep_up does only get to the parentnode of the scriptexpr.
neuper@37906
   928
  consequence:
neuper@37906
   929
  * call of (2) means _always_ that in this branch below
neuper@37906
   930
    there was an appl.stac (Repeat, Or e1, ...)
neuper@37906
   931
*)
neuper@37906
   932
fun assy ya (is as (E,l,a,v,S,b),ss)
neuper@41968
   933
	  (Const ("HOL.Let",_) $ e $ (Abs (id,T,body))) =
neuper@41968
   934
(* val (ya, (is as (E,l,a,v,S,b),ss),Const ("HOL.Let",_) $ e $ (Abs (id,T,body))) =
neuper@37906
   935
  (*1*)(((ts,d),Aundef), ((E,[R],a,v,S,b),[(m,EmptyMout,pt,p,[])]), body);
neuper@37906
   936
   *)
neuper@38015
   937
    ((*tracing("### assy Let$e$Abs: is=");
neuper@38015
   938
     tracing(istate2str (ScrState is));*)
neuper@37906
   939
     case assy ya ((E , l@[L,R], a,v,S,b),ss) e of
neuper@37906
   940
	 NasApp ((E',l,a,v,S,bb),ss) => 
neuper@37906
   941
	 let val id' = mk_Free (id, T);
neuper@37906
   942
	     val E' = upd_env E' (id', v);
neuper@38015
   943
	 (*val _=tracing("### assy Let -> NasApp");*)
neuper@37906
   944
	 in assy ya ((E', l@[R,D], a,v,S,b),ss) body end
neuper@37906
   945
     | NasNap (v,E) => 	 
neuper@37906
   946
	 let val id' = mk_Free (id, T);
neuper@37906
   947
	   val E' = upd_env E (id', v);
neuper@38015
   948
	   (*val _=tracing("### assy Let -> NasNap");*)
neuper@37906
   949
	 in assy ya ((E', l@[R,D], a,v,S,b),ss) body end
neuper@37906
   950
     | ay => ay)
neuper@37906
   951
neuper@37906
   952
  | assy (ya as (((thy,srls),_),_)) ((E,l,_,v,S,b),ss) 
neuper@37906
   953
	 (Const ("Script.While",_) $ c $ e $ a) =
neuper@38015
   954
    ((*tracing("### assy While $ c $ e $ a, upd_env= "^
neuper@37906
   955
	     (subst2str (upd_env E (a,v))));*)
neuper@37906
   956
     if eval_true_ thy srls (subst_atomic (upd_env E (a,v)) c) 
neuper@37926
   957
     then assy ya ((E, l@[L,R], SOME a,v,S,b),ss)  e
neuper@37906
   958
     else NasNap (v, E))
neuper@37906
   959
   
neuper@37906
   960
  | assy (ya as (((thy,srls),_),_)) ((E,l,a,v,S,b),ss) 
neuper@37906
   961
	 (Const ("Script.While",_) $ c $ e) =
neuper@38015
   962
    ((*tracing("### assy While, l= "^(loc_2str l));*)
neuper@37906
   963
     if eval_true_ thy srls (subst_atomic (upd_env_opt E (a,v)) c) 
neuper@37906
   964
     then assy ya ((E, l@[R], a,v,S,b),ss) e
neuper@37906
   965
     else NasNap (v, E)) 
neuper@37906
   966
neuper@37906
   967
  | assy (ya as (((thy,srls),_),_)) ((E,l,a,v,S,b),ss) 
neuper@37906
   968
	 (Const ("If",_) $ c $ e1 $ e2) =
neuper@37906
   969
    (if eval_true_ thy srls (subst_atomic (upd_env_opt E (a,v)) c) 
neuper@37906
   970
     then assy ya ((E, l@[L,R], a,v,S,b),ss) e1
neuper@37906
   971
     else assy ya ((E, l@[  R], a,v,S,b),ss) e2) 
neuper@37906
   972
neuper@37906
   973
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Try",_) $ e $ a) =
neuper@38015
   974
  ((*tracing("### assy Try $ e $ a, l= "^(loc_2str l));*)
neuper@37926
   975
    case assy ya ((E, l@[L,R], SOME a,v,S,b),ss) e of
neuper@37906
   976
     ay => ay) 
neuper@37906
   977
neuper@37906
   978
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Try",_) $ e) =
neuper@38015
   979
  ((*tracing("### assy Try $ e, l= "^(loc_2str l));*)
neuper@37906
   980
    case assy ya ((E, l@[R], a,v,S,b),ss) e of
neuper@37906
   981
     ay => ay)
neuper@37906
   982
(* val (ya, ((E,l,_,v,S,b),ss), (Const ("Script.Seq",_) $e1 $ e2 $ a)) = 
neuper@37906
   983
  (*2*)(ya, ((E , l@[L,R], a,v,S,b),ss), e);
neuper@37906
   984
   *)
neuper@37906
   985
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Seq",_) $e1 $ e2 $ a) =
neuper@38015
   986
    ((*tracing("### assy Seq $e1 $ e2 $ a, E= "^(subst2str E));*)
neuper@37926
   987
     case assy ya ((E, l@[L,L,R], SOME a,v,S,b),ss) e1 of
neuper@37926
   988
	 NasNap (v, E) => assy ya ((E, l@[L,R], SOME a,v,S,b),ss) e2
neuper@37906
   989
       | NasApp ((E,_,_,v,_,_),ss) => 
neuper@37926
   990
	 assy ya ((E, l@[L,R], SOME a,v,S,b),ss) e2
neuper@37906
   991
       | ay => ay)
neuper@37906
   992
neuper@37906
   993
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Seq",_) $e1 $ e2) =
neuper@37906
   994
    (case assy ya ((E, l@[L,R], a,v,S,b),ss) e1 of
neuper@37906
   995
	 NasNap (v, E) => assy ya ((E, l@[R], a,v,S,b),ss) e2
neuper@37906
   996
       | NasApp ((E,_,_,v,_,_),ss) => 
neuper@37906
   997
	 assy ya ((E, l@[R], a,v,S,b),ss) e2
neuper@37906
   998
       | ay => ay)
neuper@37906
   999
    
neuper@37906
  1000
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Repeat",_) $ e $ a) =
neuper@37926
  1001
    assy ya ((E,(l@[L,R]),SOME a,v,S,b),ss) e
neuper@37906
  1002
neuper@37906
  1003
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Repeat",_) $ e) =
neuper@37906
  1004
    assy ya ((E,(l@[R]),a,v,S,b),ss) e
neuper@37906
  1005
neuper@37906
  1006
(*15.6.02: ass,app Or nochmals "uberlegen FIXXXME*)
neuper@37906
  1007
  | assy (y, Aundef) ((E,l,_,v,S,b),ss) (Const ("Script.Or",_) $e1 $ e2 $ a) =
neuper@37926
  1008
    (case assy (y, AssOnly) ((E,(l@[L,L,R]),SOME a,v,S,b),ss) e1 of
neuper@37906
  1009
	 NasNap (v, E) => 
neuper@37926
  1010
	 (case assy (y, AssOnly) ((E,(l@[L,R]),SOME a,v,S,b),ss) e2 of
neuper@37906
  1011
	      NasNap (v, E) => 
neuper@37926
  1012
	      (case assy (y, AssGen) ((E,(l@[L,L,R]),SOME a,v,S,b),ss) e1 of
neuper@37906
  1013
	       NasNap (v, E) => 
neuper@37926
  1014
	       assy (y, AssGen) ((E, (l@[L,R]), SOME a,v,S,b),ss) e2
neuper@37906
  1015
	     | ay => ay)
neuper@37906
  1016
	    | ay =>(ay))
neuper@38031
  1017
       | NasApp _ => error ("assy: FIXXXME ///must not return NasApp///")
neuper@37906
  1018
       | ay => (ay))
neuper@37906
  1019
neuper@37906
  1020
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Or",_) $e1 $ e2) =
neuper@37906
  1021
    (case assy ya ((E,(l@[L,R]),a,v,S,b),ss) e1 of
neuper@37906
  1022
	 NasNap (v, E) => 
neuper@37906
  1023
	 assy ya ((E,(l@[R]),a,v,S,b),ss) e2
neuper@37906
  1024
       | ay => (ay)) 
neuper@37906
  1025
(* val ((m,_,pt,(p,p_),c)::ss) = [(m,EmptyMout,pt,p,[])];
neuper@40836
  1026
   val t = (term_of o the o (parse (Thy_Info.get_theory "Isac"))) "Rewrite rmult_1 False";
neuper@37906
  1027
neuper@37906
  1028
   val (ap,(p,p_),c,ss) = (Aundef,p,[],[]);
neuper@37906
  1029
   assy (((thy',srls),d),ap) ((E,l,a,v,S,b), (m,EmptyMout,pt,(p,p_),c)::ss) t;
neuper@37906
  1030
val ((((thy',sr),d),ap), (is as (E,l,a,v,S,b), (m,_,pt,(p,p_),c)::ss), t) =
neuper@37906
  1031
    ();
neuper@37906
  1032
   *) 
neuper@37906
  1033
neuper@37906
  1034
  | assy (((thy',sr),d),ap) (is as (E,l,a,v,S,b), (m,_,pt,(p,p_),c)::ss) t =
neuper@38015
  1035
    ((*tracing("### assy, m = "^tac_2str m);
neuper@38015
  1036
     tracing("### assy, (p,p_) = "^pos'2str (p,p_));
neuper@38015
  1037
     tracing("### assy, is= ");
neuper@38015
  1038
     tracing(istate2str (ScrState is));*)
neuper@37906
  1039
     case handle_leaf "locate" thy' sr E a v t of
neuper@37906
  1040
	(a', Expr s) => 
neuper@38015
  1041
	((*tracing("### assy: listexpr t= "^(term2str t)); 
neuper@38015
  1042
         tracing("### assy, E= "^(env2str E));
neuper@38015
  1043
	 tracing("### assy, eval(..)= "^(term2str
neuper@37906
  1044
	       (eval_listexpr_ (assoc_thy thy') sr
neuper@37906
  1045
			       (subst_atomic (upd_env_opt E (a',v)) t))));*)
neuper@37906
  1046
	  NasNap (eval_listexpr_ (assoc_thy thy') sr
neuper@37906
  1047
			       (subst_atomic (upd_env_opt E (a',v)) t), E))
neuper@37906
  1048
      (* val (_,STac stac) = subst_stacexpr E a v t;
neuper@37906
  1049
         *)
neuper@37906
  1050
      | (a', STac stac) =>
neuper@38015
  1051
	let (*val _=tracing("### assy, stac = "^term2str stac);*)
neuper@37906
  1052
	    val p' = case p_ of Frm => p | Res => lev_on p
neuper@38031
  1053
			      | _ => error ("assy: call by "^
neuper@37906
  1054
						  (pos'2str (p,p_)));
neuper@37906
  1055
	in case assod pt d m stac of
neuper@37906
  1056
	 Ass (m,v') =>
neuper@38015
  1057
	 let (*val _=tracing("### assy: Ass ("^tac_2str m^", "^
neuper@37906
  1058
			       term2str v'^")");*)
neuper@37906
  1059
	     val (p'',c',f',pt') = generate1 (assoc_thy thy') m 
bonzai@41948
  1060
			        (ScrState (E,l,a',v',S,true), e_ctxt) (p',p_) pt;
neuper@37906
  1061
	   in Assoc ((E,l,a',v',S,true), (m,f',pt',p'',c @ c')::ss) end
neuper@37906
  1062
       | AssWeak (m,v') => 
neuper@38015
  1063
	   let (*val _=tracing("### assy: Ass Weak("^tac_2str m^", "^
neuper@37906
  1064
			       term2str v'^")");*)
neuper@37906
  1065
	      val (p'',c',f',pt') = generate1 (assoc_thy thy') m 
bonzai@41948
  1066
			         (ScrState (E,l,a',v',S,false), e_ctxt) (p',p_) pt;
neuper@37906
  1067
	   in Assoc ((E,l,a',v',S,false), (m,f',pt',p'',c @ c')::ss) end
neuper@37906
  1068
       | NotAss =>
neuper@38015
  1069
	   ((*tracing("### assy, NotAss");*)
neuper@37906
  1070
	    case ap of   (*switch for Or: 1st AssOnly, 2nd AssGen*)
neuper@37906
  1071
	      AssOnly => (NasNap (v, E))
neuper@37906
  1072
	    | gen => (case applicable_in (p,p_) pt 
neuper@37906
  1073
					 (stac2tac pt (assoc_thy thy') stac) of
neuper@37906
  1074
			Appl m' =>
neuper@37906
  1075
			  let val is = (E,l,a',tac_2res m',S,false(*FIXXXME*))
neuper@37906
  1076
			      val (p'',c',f',pt') =
bonzai@41948
  1077
			      generate1 (assoc_thy thy') m' (ScrState is, e_ctxt) (p',p_) pt;
neuper@37906
  1078
			  in NasApp (is,(m,f',pt',p'',c @ c')::ss) end
neuper@37906
  1079
		      | Notappl _ => 
neuper@37906
  1080
			    (NasNap (v, E))
neuper@37906
  1081
			    )
neuper@37906
  1082
		)
neuper@37906
  1083
       end);
neuper@37906
  1084
(* (astep_up ((thy',scr,d),NasApp_) ((E,l,a,v,S,b),[(m,EmptyMout,pt,p,[])])) handle e => print_exn_G e;
neuper@37906
  1085
  *)
neuper@37906
  1086
neuper@37906
  1087
neuper@41968
  1088
(* val (ys as (y,s,Script sc,d),(is as (E,l,a,v,S,b),ss),Const ("HOL.Let",_) $ _) =
neuper@37906
  1089
       (ys, ((E,up,a,v,S,b),ss), go up sc);
neuper@37906
  1090
   *)
neuper@37906
  1091
fun ass_up (ys as (y,s,Script sc,d)) (is as (E,l,a,v,S,b),ss) 
neuper@41968
  1092
	   (Const ("HOL.Let",_) $ _) =
neuper@38015
  1093
    let (*val _= tracing("### ass_up1 Let$e: is=")
neuper@38015
  1094
	val _= tracing(istate2str (ScrState is))*)
neuper@37906
  1095
	val l = drop_last l; (*comes from e, goes to Abs*)
neuper@41968
  1096
      val (Const ("HOL.Let",_) $ e $ (Abs (i,T,body))) = go l sc;
neuper@37906
  1097
      val i = mk_Free (i, T);
neuper@37906
  1098
      val E = upd_env E (i, v);
neuper@38015
  1099
      (*val _=tracing("### ass_up2 Let$e: E="^(subst2str E));*)
neuper@37906
  1100
    in case assy (((y,s),d),Aundef) ((E, l@[R,D], a,v,S,b),ss) body of
neuper@37906
  1101
	   Assoc iss => Assoc iss
neuper@37906
  1102
	 | NasApp iss => astep_up ys iss 
neuper@37906
  1103
	 | NasNap (v, E) => astep_up ys ((E,l,a,v,S,b),ss) end
neuper@37906
  1104
neuper@37906
  1105
  | ass_up ys (iss as (is,_)) (Abs (_,_,_)) = 
neuper@38015
  1106
    ((*tracing("### ass_up  Abs: is=");
neuper@38015
  1107
     tracing(istate2str (ScrState is));*)
neuper@37906
  1108
     astep_up ys iss) (*TODO 5.9.00: env ?*)
neuper@37906
  1109
neuper@41968
  1110
  | ass_up ys (iss as (is,_)) (Const ("HOL.Let",_) $ e $ (Abs (i,T,b)))=
neuper@38015
  1111
    ((*tracing("### ass_up Let $ e $ Abs: is=");
neuper@38015
  1112
     tracing(istate2str (ScrState is));*)
neuper@37906
  1113
     astep_up ys iss) (*TODO 5.9.00: env ?*)
neuper@37906
  1114
neuper@37906
  1115
    (* val (ysa, iss,                 (Const ("Script.Seq",_) $ _ $ _ $ _)) =
neuper@37906
  1116
	   (ys,  ((E,up,a,v,S,b),ss), (go up sc));
neuper@37906
  1117
       *)
neuper@37906
  1118
  | ass_up ysa iss (Const ("Script.Seq",_) $ _ $ _ $ _) =
neuper@37906
  1119
    astep_up ysa iss (*all has been done in (*2*) below*)
neuper@37906
  1120
neuper@37906
  1121
  | ass_up ysa iss (Const ("Script.Seq",_) $ _ $ _) =
neuper@37906
  1122
    (* val (ysa, iss,                 (Const ("Script.Seq",_) $ _ $ _)) =
neuper@37906
  1123
	   (ys,  ((E,up,a,v,S,b),ss), (go up sc));
neuper@37906
  1124
       *)
neuper@37906
  1125
    astep_up ysa iss (*2*: comes from e2*)
neuper@37906
  1126
neuper@37906
  1127
  | ass_up (ysa as (y,s,Script sc,d)) (is as (E,l,a,v,S,b),ss)
neuper@37906
  1128
	   (Const ("Script.Seq",_) $ _ ) = (*2*: comes from e1, goes to e2*)
neuper@37906
  1129
	   (* val ((ysa as (y,s,Script sc,d)), (is as (E,l,a,v,S,b),ss),
neuper@37906
  1130
	                                  (Const ("Script.Seq",_) $ _ )) = 
neuper@37906
  1131
		  (ys,   ((E,up,a,v,S,b),ss), (go up sc));
neuper@37906
  1132
	      *)
neuper@37906
  1133
    let val up = drop_last l;
neuper@37906
  1134
	val Const ("Script.Seq",_) $ _ $ e2 = go up sc
neuper@38015
  1135
	(*val _= tracing("### ass_up Seq$e: is=")
neuper@38015
  1136
	val _= tracing(istate2str (ScrState is))*)
neuper@37906
  1137
    in case assy (((y,s),d),Aundef) ((E, up@[R], a,v,S,b),ss) e2 of
neuper@37906
  1138
	   NasNap (v,E) => astep_up ysa ((E,up,a,v,S,b),ss)
neuper@37906
  1139
	 | NasApp iss => astep_up ysa iss
neuper@37906
  1140
	 | ay => ay end
neuper@37906
  1141
neuper@37906
  1142
    (* val (ysa, iss,                 (Const ("Script.Try",_) $ e $ _)) =
neuper@37906
  1143
	   (ys,  ((E,up,a,v,S,b),ss), (go up sc));
neuper@37906
  1144
       *)
neuper@37906
  1145
  | ass_up ysa iss (Const ("Script.Try",_) $ e $ _) =
neuper@37906
  1146
    astep_up ysa iss
neuper@37906
  1147
neuper@37906
  1148
  (* val (ysa, iss, (Const ("Script.Try",_) $ e)) =
neuper@37906
  1149
	 (ys,  ((E,up,a,v,S,b),ss), (go up sc));
neuper@37906
  1150
     *)
neuper@37906
  1151
  | ass_up ysa iss (Const ("Script.Try",_) $ e) =
neuper@38015
  1152
    ((*tracing("### ass_up Try $ e");*)
neuper@37906
  1153
     astep_up ysa iss)
neuper@37906
  1154
neuper@37906
  1155
  | ass_up (ys as (y,s,_,d)) ((E,l,_,v,S,b),ss)
neuper@37906
  1156
	   (*(Const ("Script.While",_) $ c $ e $ a) = WN050930 blind fix*)
neuper@37906
  1157
	   (t as Const ("Script.While",_) $ c $ e $ a) =
neuper@38015
  1158
    ((*tracing("### ass_up: While c= "^
neuper@37906
  1159
	     (term2str (subst_atomic (upd_env E (a,v)) c)));*)
neuper@37906
  1160
     if eval_true_ y s (subst_atomic (upd_env E (a,v)) c)
neuper@37926
  1161
    then (case assy (((y,s),d),Aundef) ((E, l@[L,R], SOME a,v,S,b),ss) e of 
neuper@37926
  1162
       NasNap (v,E') => astep_up ys ((E',l, SOME a,v,S,b),ss)
neuper@37906
  1163
     | NasApp ((E',l,a,v,S,b),ss) =>
neuper@37906
  1164
       ass_up ys ((E',l,a,v,S,b),ss) t (*WN050930 't' was not assigned*)
neuper@37906
  1165
     | ay => ay)
neuper@37926
  1166
    else astep_up ys ((E,l, SOME a,v,S,b),ss)
neuper@37906
  1167
	 )
neuper@37906
  1168
neuper@37906
  1169
  | ass_up (ys as (y,s,_,d)) ((E,l,a,v,S,b),ss)
neuper@37906
  1170
	   (*(Const ("Script.While",_) $ c $ e) = WN050930 blind fix*)
neuper@37906
  1171
	   (t as Const ("Script.While",_) $ c $ e) =
neuper@37906
  1172
    if eval_true_ y s (subst_atomic (upd_env_opt E (a,v)) c)
neuper@37906
  1173
    then (case assy (((y,s),d),Aundef) ((E, l@[R], a,v,S,b),ss) e of 
neuper@37906
  1174
       NasNap (v,E') => astep_up ys ((E',l, a,v,S,b),ss)
neuper@37906
  1175
     | NasApp ((E',l,a,v,S,b),ss) =>
neuper@37906
  1176
       ass_up ys ((E',l,a,v,S,b),ss) t (*WN050930 't' was not assigned*)
neuper@37906
  1177
     | ay => ay)
neuper@37906
  1178
    else astep_up ys ((E,l, a,v,S,b),ss)
neuper@37906
  1179
neuper@37906
  1180
  | ass_up y iss (Const ("If",_) $ _ $ _ $ _) = astep_up y iss
neuper@37906
  1181
neuper@37906
  1182
  | ass_up (ys as (y,s,_,d)) ((E,l,_,v,S,b),ss)
neuper@37906
  1183
	   (t as Const ("Script.Repeat",_) $ e $ a) =
neuper@37926
  1184
  (case assy (((y,s),d), Aundef) ((E, (l@[L,R]), SOME a,v,S,b),ss) e of 
neuper@37926
  1185
       NasNap (v,E') => astep_up ys ((E',l, SOME a,v,S,b),ss)
neuper@37906
  1186
     | NasApp ((E',l,a,v,S,b),ss) =>
neuper@37906
  1187
       ass_up ys ((E',l,a,v,S,b),ss) t
neuper@37906
  1188
     | ay => ay)
neuper@37906
  1189
neuper@37906
  1190
  | ass_up (ys as (y,s,_,d)) (is as ((E,l,a,v,S,b),ss)) 
neuper@37906
  1191
	   (t as Const ("Script.Repeat",_) $ e) =
neuper@37906
  1192
  (case assy (((y,s),d), Aundef) ((E, (l@[R]), a,v,S,b),ss) e of 
neuper@37906
  1193
       NasNap (v', E') => astep_up ys ((E',l,a,v',S,b),ss)
neuper@37906
  1194
     | NasApp ((E',l,a,v',S,bb),ss) => 
neuper@37906
  1195
       ass_up ys ((E',l,a,v',S,b),ss) t
neuper@37906
  1196
     | ay => ay)
neuper@37906
  1197
neuper@37906
  1198
  | ass_up y iss (Const ("Script.Or",_) $ _ $ _ $ _) = astep_up y iss
neuper@37906
  1199
neuper@37906
  1200
  | ass_up y iss (Const ("Script.Or",_) $ _ $ _) = astep_up y iss
neuper@37906
  1201
neuper@37906
  1202
  | ass_up y ((E,l,a,v,S,b),ss) (Const ("Script.Or",_) $ _ ) = 
neuper@37906
  1203
    astep_up y ((E, (drop_last l), a,v,S,b),ss)
neuper@37906
  1204
neuper@37906
  1205
  | ass_up y iss t =
neuper@38031
  1206
    error ("ass_up not impl for t= "^(term2str t))
neuper@37906
  1207
(* 9.6.03
neuper@37906
  1208
   val (ys as (_,_,Script sc,_), ss) = 
neuper@37906
  1209
       ((thy',srls,scr,d), [(m,EmptyMout,pt,p,[])]:step list);
neuper@37906
  1210
   astep_up ys ((E,l,a,v,S,b),ss);
neuper@37906
  1211
   val ((ys as (_,_,Script sc,_)), ((E,l,a,v,S,b),ss)) = 
neuper@37906
  1212
       (ysa, iss);
neuper@37906
  1213
   val ((ys as (_,_,Script sc,_)), ((E,l,a,v,S,b),ss)) = 
neuper@37906
  1214
       ((thy',srls,scr,d), ((E,l,a,v,S,b), [(m,EmptyMout,pt,p,[])]));
neuper@37906
  1215
   *)  
neuper@37906
  1216
and astep_up (ys as (_,_,Script sc,_)) ((E,l,a,v,S,b),ss) =
neuper@37906
  1217
  if 1 < length l
neuper@37906
  1218
    then 
neuper@37906
  1219
      let val up = drop_last l;
neuper@38015
  1220
	  (*val _= tracing("### astep_up: E= "^env2str E);*)
neuper@37906
  1221
      in ass_up ys ((E,up,a,v,S,b),ss) (go up sc) end
neuper@37906
  1222
  else (NasNap (v, E))
neuper@37906
  1223
;
neuper@37906
  1224
neuper@37906
  1225
neuper@37906
  1226
neuper@37906
  1227
neuper@37906
  1228
neuper@37906
  1229
(* use"ME/script.sml";
neuper@37906
  1230
   use"script.sml";
neuper@37906
  1231
 term2str (go up sc);
neuper@37906
  1232
neuper@37906
  1233
   *)
neuper@37906
  1234
neuper@37906
  1235
(*check if there are tacs for rewriting only*)
neuper@37906
  1236
fun rew_only ([]:step list) = true
neuper@37906
  1237
  | rew_only (((Rewrite' _          ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1238
  | rew_only (((Rewrite_Inst' _     ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1239
  | rew_only (((Rewrite_Set' _      ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1240
  | rew_only (((Rewrite_Set_Inst' _ ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1241
  | rew_only (((Calculate' _        ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1242
  | rew_only (((Begin_Trans' _      ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1243
  | rew_only (((End_Trans' _        ,_,_,_,_))::ss) = rew_only ss
neuper@37906
  1244
  | rew_only _ = false; 
neuper@37906
  1245
  
neuper@37906
  1246
neuper@37906
  1247
datatype locate =
neuper@37906
  1248
  Steps of istate      (*producing hd of step list (which was latest)
neuper@37906
  1249
	                 for next_tac, for reporting Safe|Unsafe to DG*)
neuper@37906
  1250
	   * step      (*(scrstate producing this step is in ptree !)*) 
neuper@37906
  1251
		 list  (*locate_gen may produce intermediate steps*)
neuper@37906
  1252
| NotLocatable;        (*no (m Ass m') or (m AssWeak m') found*)
neuper@37906
  1253
neuper@37906
  1254
neuper@37906
  1255
neuper@37906
  1256
(* locate_gen tries to locate an input tac m in the script. 
neuper@37906
  1257
   pursuing this goal the script is executed until an (m' equiv m) is found,
neuper@37906
  1258
   or the end of the script
neuper@37906
  1259
args
neuper@37906
  1260
   m   : input by the user, already checked by applicable_in,
neuper@37906
  1261
         (to be searched within Or; and _not_ an m doing the step on ptree !)
neuper@37906
  1262
   p,pt: (incl ets) at the time of input
neuper@37906
  1263
   scr : the script
neuper@37906
  1264
   d   : canonical simplifier for locating Take, Substitute, Subproblems etc.
neuper@37906
  1265
   ets : ets at the time of input
neuper@37906
  1266
   l   : the location (in scr) of the stac which generated the current formula
neuper@37906
  1267
returns
neuper@37906
  1268
   Steps: pt,p (incl. ets) with m done
neuper@37906
  1269
          pos' list of proofobjs cut (from generate)
neuper@37906
  1270
          safe: implied from last proofobj
neuper@37906
  1271
	  ets:
neuper@37906
  1272
   ///ToDo : ets contains a list of tacs to be done before m can be done
neuper@37906
  1273
          NOT IMPL. -- "error: do other step before"
neuper@37906
  1274
   NotLocatable: thus generate_hard
neuper@37906
  1275
*)
neuper@37906
  1276
(* val (Rewrite'(_,ro,er,pa,(id,str),f,_), p, Rfuns {locate_rule=lo,...},
neuper@37906
  1277
	RrlsState (_,f'',rss,rts)) = (m, (p,p_), sc, is);
neuper@37906
  1278
   *)
neuper@37906
  1279
fun locate_gen (thy',_) (Rewrite'(_,ro,er,pa,(id,str),f,_)) (pt,p) 
bonzai@41948
  1280
	       (Rfuns {locate_rule=lo,...}, d) (RrlsState (_,f'',rss,rts), ctxt) = 
neuper@37906
  1281
    (case lo rss f (Thm (id, mk_thm (assoc_thy thy') str)) of
neuper@37906
  1282
	 [] => NotLocatable
neuper@37906
  1283
       | rts' => 
neuper@37906
  1284
	 Steps (rts2steps [] ((pt,p),(f,f'',rss,rts),(thy',ro,er,pa)) rts'))
neuper@37906
  1285
neuper@37906
  1286
  | locate_gen (ts as (thy',srls)) (m:tac_) ((pt,p):ptree * pos') 
bonzai@41948
  1287
	       (scr as Script (h $ body),d) (ScrState (E,l,a,v,S,b), ctxt)  = 
neuper@38015
  1288
  let (*val _= tracing("### locate_gen-----------------: is=");
neuper@38015
  1289
      val _= tracing( istate2str (ScrState (E,l,a,v,S,b)));
neuper@38015
  1290
      val _= tracing("### locate_gen: l= "^loc_2str l^", p= "^pos'2str p)*)
neuper@37906
  1291
      val thy = assoc_thy thy';
neuper@37906
  1292
  in case if l=[] orelse ((*init.in solve..Apply_Method...*)
neuper@37906
  1293
			  (last_elem o fst) p = 0 andalso snd p = Res)
neuper@37906
  1294
	  then (assy ((ts,d),Aundef) ((E,[R],a,v,S,b),
neuper@37906
  1295
				      [(m,EmptyMout,pt,p,[])]) body)
neuper@37906
  1296
(* val Assoc (iss as (is as (_,_,_,_,_,bb), ss as ((m',f',pt',p',c')::_))) =
neuper@37906
  1297
       (astep_up (thy',srls,scr,d) ((E,l,a,v,S,b),[(m,EmptyMout,pt,p,[])]));
neuper@37906
  1298
       (assy ((ts,d),Aundef) ((E,[R],a,v,S,b),[(m,EmptyMout,pt,p,[])]) body);
neuper@37906
  1299
  *)
neuper@37906
  1300
	  else (astep_up (thy',srls,scr,d) ((E,l,a,v,S,b),
neuper@37906
  1301
					    [(m,EmptyMout,pt,p,[])]) ) of
neuper@37906
  1302
	 Assoc (iss as (is as (_,_,_,_,_,bb), ss as ((m',f',pt',p',c')::_))) =>
neuper@37906
  1303
(* val Assoc (iss as (is as (_,_,_,_,_,bb), ss as ((m',f',pt',p',c')::_))) =
neuper@37906
  1304
       (astep_up (thy',srls,scr,d) ((E,l,a,v,S,b),
neuper@37906
  1305
				    [(m,EmptyMout,pt,p,[])]) );
neuper@37906
  1306
   *)
neuper@38015
  1307
	 ((*tracing("### locate_gen Assoc: p'="^(pos'2str p'));*)
neuper@37906
  1308
	  if bb then Steps (ScrState is, ss)
neuper@37906
  1309
	  else if rew_only ss (*andalso 'not bb'= associated weakly*)
neuper@37906
  1310
	  then let val (po,p_) = p
neuper@37906
  1311
                   val po' = case p_ of Frm => po | Res => lev_on po
neuper@37906
  1312
		  (*WN.12.03: noticed, that pos is also updated in assy !?!
neuper@37906
  1313
		   instead take p' from Assoc ?????????????????????????????*)
neuper@37906
  1314
                  val (p'',c'',f'',pt'') = 
bonzai@41951
  1315
		      generate1 thy m (ScrState is, ctxt) (po',p_) pt;
neuper@38015
  1316
	      (*val _=tracing("### locate_gen, aft g1: p''="^(pos'2str p''));*)
neuper@37906
  1317
	      (*drop the intermediate steps !*)
neuper@37906
  1318
	      in Steps (ScrState is, [(m, f'',pt'',p'',c'')]) end
neuper@37906
  1319
	 else Steps (ScrState is, ss))
neuper@37906
  1320
	
neuper@37906
  1321
     | NasApp _ (*[((E,l,a,v,S,bb),(m',f',pt',p',c'))] => 
neuper@38031
  1322
	   error ("locate_gen: should not have got NasApp, ets =")*)
neuper@37906
  1323
       => NotLocatable
neuper@37906
  1324
     | NasNap (_,_) =>
neuper@37906
  1325
       if l=[] then NotLocatable
neuper@37906
  1326
       else (*scan from begin of script for rew_only*)
neuper@37906
  1327
	   (case assy ((ts,d),Aundef) ((E,[R],a,v,Unsafe,b),
neuper@37906
  1328
					 [(m,EmptyMout,pt,p,[])]) body  of
neuper@37906
  1329
		Assoc (iss as (is as (_,_,_,_,_,bb), 
neuper@37906
  1330
			       ss as ((m',f',pt',p',c')::_))) =>
neuper@38015
  1331
		    ((*tracing"4### locate_gen Assoc after Fini";*)
neuper@37906
  1332
		     if rew_only ss
neuper@37906
  1333
		     then let val(p'',c'',f'',pt'') = 
bonzai@41951
  1334
				 generate1 thy m (ScrState is, ctxt) p' pt;
neuper@37906
  1335
			  (*drop the intermediate steps !*)
neuper@37906
  1336
			  in Steps (ScrState is, [(m, f'',pt'',p'',c'')]) end
neuper@37906
  1337
		     else NotLocatable)
neuper@38015
  1338
	      | _ => ((*tracing ("#### locate_gen: after Fini");*)
neuper@37906
  1339
		      NotLocatable))
neuper@37906
  1340
  end
bonzai@41951
  1341
  | locate_gen _ m _ (sc,_) (is, _) = 
neuper@38031
  1342
    error ("locate_gen: wrong arguments,\n tac= "^(tac_2str m)^
neuper@37906
  1343
		 ",\n scr= "^(scr2str sc)^",\n istate= "^(istate2str is));
neuper@37906
  1344
neuper@37906
  1345
neuper@37906
  1346
neuper@37906
  1347
(** find the next stactic in a script **)
neuper@37906
  1348
neuper@37906
  1349
datatype appy =  (*ExprVal in the sense of denotational semantics*)
neuper@37906
  1350
    Appy of      (*applicable stac found, search stalled*)
neuper@37906
  1351
    tac_ *       (*tac_ associated (fun assod) with stac*)
neuper@37906
  1352
    scrstate     (*after determination of stac WN.18.8.03*)
neuper@37906
  1353
  | Napp of      (*stac found was not applicable; 
neuper@37906
  1354
	           this mode may become Skip in Repeat, Try and Or*)
neuper@37906
  1355
    env (*stack*)  (*popped while nxt_up*)
neuper@37906
  1356
  | Skip of      (*for restart after Appy, for leaving iterations,
neuper@37906
  1357
	           for passing the value of scriptexpressions,
neuper@37906
  1358
		   and for finishing the script successfully*)
neuper@37906
  1359
    term * env (*stack*);
neuper@37906
  1360
neuper@37906
  1361
(*appy, nxt_up, nstep_up scanning for next_tac.
neuper@37906
  1362
  search is clearly separated into (1)-(2):
neuper@37906
  1363
  (1) appy is recursive descent;
neuper@37906
  1364
  (2) nxt_up resumes interpretation at a location somewhere in the script;
neuper@37906
  1365
      nstep_up does only get to the parentnode of the scriptexpr.
neuper@37906
  1366
  consequence:
neuper@37906
  1367
  * call of (2) means _always_ that in this branch below
neuper@37906
  1368
    there was an applicable stac (Repeat, Or e1, ...)
neuper@37906
  1369
*)
neuper@37906
  1370
neuper@37906
  1371
neuper@37906
  1372
datatype appy_ = (*as argument in nxt_up, nstep_up, from appy*)
neuper@37906
  1373
       (*  Appy is only (final) returnvalue, not argument during search
neuper@37906
  1374
       |*) Napp_ (*ev. detects 'script is not appropriate for this example'*)
neuper@37906
  1375
       | Skip_;  (*detects 'script successfully finished'
neuper@37906
  1376
		   also used as init-value for resuming; this works,
neuper@37906
  1377
	           because 'nxt_up Or e1' treats as Appy*)
neuper@37906
  1378
neuper@37906
  1379
fun appy thy ptp E l
neuper@41968
  1380
  (t as Const ("HOL.Let",_) $ e $ (Abs (i,T,b))) a v =
neuper@41968
  1381
(* val (thy, ptp, E, l,        t as Const ("HOL.Let",_) $ e $ (Abs (i,T,b)),a, v)=
neuper@37906
  1382
       (thy, ptp, E, up@[R,D], body,                                    a, v);
neuper@37906
  1383
   appy thy ptp E l t a v;
neuper@37906
  1384
   *)
neuper@38015
  1385
  ((*tracing("### appy Let$e$Abs: is=");
neuper@38015
  1386
   tracing(istate2str (ScrState (E,l,a,v,Sundef,false)));*)
neuper@37906
  1387
   case appy thy ptp E (l@[L,R]) e a v of
neuper@37906
  1388
     Skip (res, E) => 
neuper@38015
  1389
       let (*val _= tracing("### appy Let "^(term2str t));
neuper@38015
  1390
	 val _= tracing("### appy Let: Skip res ="^(term2str res));*)
neuper@37906
  1391
       (*val (i',b') = variant_abs (i,T,b); WN.15.5.03
neuper@37906
  1392
	 val i = mk_Free(i',T);             WN.15.5.03 *)   
neuper@37906
  1393
	 val E' = upd_env E (Free (i,T), res);
neuper@37906
  1394
       in appy thy ptp E' (l@[R,D]) b a v end
neuper@37906
  1395
   | ay => ay)
neuper@37906
  1396
neuper@37906
  1397
  | appy (thy as (th,sr)) ptp E l
neuper@37906
  1398
  (t as Const ("Script.While"(*1*),_) $ c $ e $ a) _ v = (*ohne n. 28.9.00*)
neuper@38015
  1399
  ((*tracing("### appy While $ c $ e $ a, upd_env= "^
neuper@37906
  1400
	   (subst2str (upd_env E (a,v))));*)
neuper@37906
  1401
   if eval_true_ th sr (subst_atomic (upd_env E (a,v)) c)
neuper@37926
  1402
    then appy thy ptp E (l@[L,R]) e (SOME a) v
neuper@37906
  1403
  else Skip (v, E))
neuper@37906
  1404
neuper@37906
  1405
  | appy (thy as (th,sr)) ptp E l
neuper@37906
  1406
  (t as Const ("Script.While"(*2*),_) $ c $ e) a v =(*ohne nachdenken 28.9.00*)
neuper@38015
  1407
  ((*tracing("### appy While $ c $ e, upd_env= "^
neuper@37906
  1408
	   (subst2str (upd_env_opt E (a,v))));*)
neuper@37906
  1409
   if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c)
neuper@37906
  1410
    then appy thy ptp E (l@[R]) e a v
neuper@37906
  1411
  else Skip (v, E))
neuper@37906
  1412
neuper@37906
  1413
  | appy (thy as (th,sr)) ptp E l (t as Const ("If",_) $ c $ e1 $ e2) a v =
neuper@38015
  1414
    ((*tracing("### appy If: t= "^(term2str t));
neuper@38015
  1415
     tracing("### appy If: c= "^(term2str(subst_atomic(upd_env_opt E(a,v))c)));
neuper@38015
  1416
     tracing("### appy If: thy= "^(fst thy));*)
neuper@37906
  1417
     if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c)
neuper@38015
  1418
     then ((*tracing("### appy If: true");*)appy thy ptp E (l@[L,R]) e1 a v)
neuper@38015
  1419
     else ((*tracing("### appy If: false");*)appy thy ptp E (l@[  R]) e2 a v))
neuper@37906
  1420
(* val (thy, ptp, E, l,     (Const ("Script.Repeat",_) $ e $ a), _, v) =
neuper@37906
  1421
       (thy, ptp, E, (l@[R]), e,                                 a, v);
neuper@37906
  1422
   *)
neuper@37906
  1423
  | appy thy ptp E (*env*) l
neuper@37906
  1424
  (Const ("Script.Repeat"(*1*),_) $ e $ a) _ v = 
neuper@38015
  1425
    ((*tracing("### appy Repeat a: ");*)
neuper@37926
  1426
     appy thy ptp E (*env*) (l@[L,R]) e (SOME a) v)
neuper@37906
  1427
(* val (thy, ptp, E, l,     (Const ("Script.Repeat",_) $ e), _, v) =
neuper@37906
  1428
       (thy, ptp, E, (l@[R]), e,                             a, v);
neuper@37906
  1429
   *)
neuper@37906
  1430
  | appy thy ptp E (*env*) l
neuper@37906
  1431
  (Const ("Script.Repeat"(*2*),_) $ e) a v = 
neuper@38053
  1432
    ((*tracing("3### appy Repeat: a= " ^ term2str a);*)
neuper@37906
  1433
     appy thy ptp E (*env*) (l@[R]) e a v)
neuper@37906
  1434
(* val (thy, ptp, E, l,      (t as Const ("Script.Try",_) $ e $ a), _, v)=
neuper@37906
  1435
       (thy, ptp, E, (l@[R]), e2,                                   a, v);
neuper@37906
  1436
   *)
neuper@37906
  1437
  | appy thy ptp E l
neuper@37906
  1438
  (t as Const ("Script.Try",_) $ e $ a) _ v =
neuper@37926
  1439
  (case appy thy ptp E (l@[L,R]) e (SOME a) v of
neuper@38053
  1440
     Napp E => ((*tracing("### appy Try " ^ term2str t);*)
neuper@37906
  1441
		 Skip (v, E))
neuper@37906
  1442
   | ay => ay)
neuper@37906
  1443
(* val (thy, ptp, E, l,      (t as Const ("Script.Try",_) $ e), _, v)=
neuper@37906
  1444
       (thy, ptp, E, (l@[R]), e2,                               a, v);
neuper@37906
  1445
   val (thy, ptp, E, l,        (t as Const ("Script.Try",_) $ e), _, v)=
neuper@37906
  1446
       (thy, ptp, E, (l@[L,R]), e1,                               a, v);
neuper@37906
  1447
   *)
neuper@37906
  1448
  | appy thy ptp E l
neuper@37906
  1449
  (t as Const ("Script.Try",_) $ e) a v =
neuper@37906
  1450
  (case appy thy ptp E (l@[R]) e a v of
neuper@38053
  1451
     Napp E => ((*tracing("### appy Try " ^ term2str t);*)
neuper@37906
  1452
		 Skip (v, E))
neuper@37906
  1453
   | ay => ay)
neuper@37906
  1454
neuper@37906
  1455
neuper@37906
  1456
  | appy thy ptp E l
neuper@37906
  1457
	 (Const ("Script.Or"(*1*),_) $e1 $ e2 $ a) _ v =
neuper@37926
  1458
    (case appy thy ptp E (l@[L,L,R]) e1 (SOME a) v of
neuper@37906
  1459
	 Appy lme => Appy lme
neuper@37926
  1460
       | _ => appy thy ptp E (*env*) (l@[L,R]) e2 (SOME a) v)
neuper@37906
  1461
    
neuper@37906
  1462
  | appy thy ptp E l
neuper@37906
  1463
	 (Const ("Script.Or"(*2*),_) $e1 $ e2) a v =
neuper@37906
  1464
    (case appy thy ptp E (l@[L,R]) e1 a v of
neuper@37906
  1465
	 Appy lme => Appy lme
neuper@37906
  1466
       | _ => appy thy ptp E (l@[R]) e2 a v)
neuper@37906
  1467
neuper@37906
  1468
(* val (thy, ptp, E, l,     (Const ("Script.Seq",_) $ e1 $ e2 $ a), _, v)=
neuper@37906
  1469
       (thy, ptp, E,(up@[R]),e2,                                    a, v);
neuper@37906
  1470
   val (thy, ptp, E, l,     (Const ("Script.Seq",_) $ e1 $ e2 $ a), _, v)=
neuper@37906
  1471
       (thy, ptp, E,(up@[R,D]),body,                                a, v);
neuper@37906
  1472
   *)
neuper@37906
  1473
  | appy thy ptp E l
neuper@37906
  1474
	 (Const ("Script.Seq"(*1*),_) $ e1 $ e2 $ a) _ v =
neuper@38015
  1475
    ((*tracing("### appy Seq $ e1 $ e2 $ a, upd_env= "^
neuper@37906
  1476
	     (subst2str (upd_env E (a,v))));*)
neuper@37926
  1477
     case appy thy ptp E (l@[L,L,R]) e1 (SOME a) v of
neuper@37926
  1478
	 Skip (v,E) => appy thy ptp E (l@[L,R]) e2 (SOME a) v
neuper@37906
  1479
       | ay => ay)
neuper@37906
  1480
neuper@37906
  1481
(* val (thy, ptp, E, l,     (Const ("Script.Seq",_) $ e1 $ e2), _, v)=
neuper@37906
  1482
       (thy, ptp, E,(up@[R]),e2,                                a, v);
neuper@37906
  1483
   val (thy, ptp, E, l,     (Const ("Script.Seq",_) $ e1 $ e2), _, v)=
neuper@37906
  1484
       (thy, ptp, E,(l@[R]), e2,                                a, v);
neuper@37906
  1485
   val (thy, ptp, E, l,     (Const ("Script.Seq",_) $ e1 $ e2), _, v)=
neuper@37906
  1486
       (thy, ptp, E,(up@[R,D]),body,                            a, v);
neuper@37906
  1487
   *)
neuper@37906
  1488
  | appy thy ptp E l
neuper@37906
  1489
	 (Const ("Script.Seq",_) $ e1 $ e2) a v =
neuper@37906
  1490
    (case appy thy ptp E (l@[L,R]) e1 a v of
neuper@37906
  1491
	 Skip (v,E) => appy thy ptp E (l@[R]) e2 a v
neuper@37906
  1492
       | ay => ay)
neuper@37906
  1493
neuper@37906
  1494
  (*.a leaf has been found*)   
neuper@37906
  1495
  | appy (thy as (th,sr)) (pt, p) E l t a v =
neuper@37906
  1496
(* val (thy as (th,sr),(pt, p),E, l,        t,    a, v) = 
neuper@37906
  1497
       (thy,            ptp,   E, up@[R,D], body, a, v);
neuper@37906
  1498
   val (thy as (th,sr),(pt, p),E, l,       t, a, v) = 
neuper@37906
  1499
       (thy,            ptp,   E, l@[L,R], e, a, v);
neuper@37906
  1500
   val (thy as (th,sr),(pt, p),E, l,       t, a, v) =
neuper@37906
  1501
       (thy,            ptp,   E,(l@[R]),  e, a, v);
neuper@37906
  1502
   *)
neuper@37906
  1503
    (case handle_leaf "next  " th sr E a v t of
neuper@37906
  1504
(* val (a', Expr s) = handle_leaf "next  " th sr E a v t;
neuper@37906
  1505
   *)
neuper@37906
  1506
	(a', Expr s) => Skip (s, E)
neuper@37906
  1507
(* val (a', STac stac) = handle_leaf "next  " th sr E a v t;
neuper@37906
  1508
   *)
neuper@37906
  1509
     | (a', STac stac) =>
neuper@37906
  1510
	let
neuper@38015
  1511
	 (*val _= tracing("### appy t, vor  stac2tac_ is="); 
neuper@38015
  1512
           val _= tracing(istate2str (ScrState (E,l,a',v,Sundef,false)));*)
neuper@37906
  1513
	   val (m,m') = stac2tac_ pt (assoc_thy th) stac
neuper@37906
  1514
       in case m of 
neuper@37906
  1515
	      Subproblem _ => Appy (m', (E,l,a',tac_2res m',Sundef,false))
neuper@37906
  1516
	    | _ => (case applicable_in p pt m of
neuper@37906
  1517
(* val Appl m' = applicable_in p pt m;
neuper@37906
  1518
   *)
neuper@37906
  1519
			Appl m' => 
neuper@38015
  1520
			((*tracing("### appy: Appy");*)
neuper@37906
  1521
			 Appy (m', (E,l,a',tac_2res m',Sundef,false)))
neuper@38015
  1522
		      | _ => ((*tracing("### appy: Napp");*)Napp E)) 
neuper@37906
  1523
	end);
neuper@37906
  1524
	 
neuper@37906
  1525
neuper@41968
  1526
(* val (scr as Script sc, l, t as Const ("HOL.Let",_) $ _) =
neuper@37906
  1527
       (Script sc, up, go up sc);
neuper@37906
  1528
   nxt_up thy ptp (Script sc) E l ay t a v;
neuper@37906
  1529
neuper@41968
  1530
   val (thy,ptp,scr as (Script sc),E,l, ay, t as Const ("HOL.Let",_) $ _, a, v)=
neuper@37906
  1531
       (thy,ptp,Script sc,         E,up,ay, go up sc,                 a, v);
neuper@37906
  1532
   nxt_up thy ptp scr E l ay t a v;
neuper@37906
  1533
   *)
neuper@37906
  1534
fun nxt_up thy ptp (scr as (Script sc)) E l ay
neuper@41968
  1535
    (t as Const ("HOL.Let",_) $ _) a v = (*comes from let=...*)
neuper@38015
  1536
    ((*tracing("### nxt_up1 Let$e: is=");
neuper@38015
  1537
     tracing(istate2str (ScrState (E,l,a,v,Sundef,false)));*)
neuper@37906
  1538
     if ay = Napp_
neuper@37906
  1539
    then nstep_up thy ptp scr E (drop_last l) Napp_ a v
neuper@37906
  1540
    else (*Skip_*)
neuper@37906
  1541
	let val up = drop_last l;
neuper@41968
  1542
	    val (Const ("HOL.Let",_) $ e $ (Abs (i,T,body))) = go up sc;
neuper@37906
  1543
            val i = mk_Free (i, T);
neuper@37906
  1544
            val E = upd_env E (i, v);
neuper@38015
  1545
          (*val _= tracing("### nxt_up2 Let$e: is=");
neuper@38015
  1546
            val _= tracing(istate2str (ScrState (E,l,a,v,Sundef,false)));*)
neuper@37906
  1547
	in case appy thy ptp (E) (up@[R,D]) body a v  of
neuper@37906
  1548
	       Appy lre => Appy lre
neuper@37906
  1549
	     | Napp E => nstep_up thy ptp scr E up Napp_ a v
neuper@37906
  1550
	     | Skip (v,E) => nstep_up thy ptp scr E up Skip_ a v end)
neuper@37906
  1551
	    
neuper@37906
  1552
  | nxt_up thy ptp scr E l ay
neuper@37906
  1553
    (t as Abs (_,_,_)) a v = 
neuper@38053
  1554
    ((*tracing("### nxt_up Abs: " ^ term2str t);*)
neuper@37906
  1555
     nstep_up thy ptp scr E (*enr*) l ay a v)
neuper@37906
  1556
neuper@37906
  1557
  | nxt_up thy ptp scr E l ay
neuper@41968
  1558
    (t as Const ("HOL.Let",_) $ e $ (Abs (i,T,b))) a v =
neuper@38015
  1559
    ((*tracing("### nxt_up Let$e$Abs: is=");
neuper@38015
  1560
     tracing(istate2str (ScrState (E,l,a,v,Sundef,false)));*)
neuper@38053
  1561
     (*tracing("### nxt_up Let e Abs: " ^ term2str t);*)
neuper@37906
  1562
     nstep_up thy ptp scr (*upd_env*) E (*a,v)*) 
neuper@37906
  1563
	      (*eno,upd_env env (iar,res),iar,res,saf*) l ay a v)
neuper@37906
  1564
neuper@37906
  1565
  (*no appy_: never causes Napp -> Helpless*)
neuper@37906
  1566
  | nxt_up (thy as (th,sr)) ptp scr E l _ 
neuper@37906
  1567
  (Const ("Script.While"(*1*),_) $ c $ e $ _) a v = 
neuper@37906
  1568
  if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c) 
neuper@37906
  1569
    then case appy thy ptp E (l@[L,R]) e a v of
neuper@37906
  1570
	     Appy lr => Appy lr
neuper@37906
  1571
	   | Napp E => nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1572
	   | Skip (v,E) => nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1573
  else nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1574
neuper@37906
  1575
  (*no appy_: never causes Napp - Helpless*)
neuper@37906
  1576
  | nxt_up (thy as (th,sr)) ptp scr E l _ 
neuper@37906
  1577
  (Const ("Script.While"(*2*),_) $ c $ e) a v = 
neuper@37906
  1578
  if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c) 
neuper@37906
  1579
    then case appy thy ptp E (l@[R]) e a v of
neuper@37906
  1580
	     Appy lr => Appy lr
neuper@37906
  1581
	   | Napp E => nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1582
	   | Skip (v,E) => nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1583
  else nstep_up thy ptp scr E l Skip_ a v
neuper@37906
  1584
neuper@37906
  1585
(* val (scr, l) = (Script sc, up);
neuper@37906
  1586
   *)
neuper@37906
  1587
  | nxt_up thy ptp scr E l ay (Const ("If",_) $ _ $ _ $ _) a v = 
neuper@37906
  1588
    nstep_up thy ptp scr E l ay a v
neuper@37906
  1589
neuper@37906
  1590
  | nxt_up thy ptp scr E l _ (*no appy_: there was already a stac below*)
neuper@37906
  1591
  (Const ("Script.Repeat"(*1*),T) $ e $ _) a v =
neuper@37906
  1592
    (case appy thy ptp (*upd_env*) E (*a,v)*) ((l@[L,R]):loc_) e a v  of
neuper@37906
  1593
      Appy lr => Appy lr
neuper@38015
  1594
    | Napp E => ((*tracing("### nxt_up Repeat a: ");*)
neuper@37906
  1595
		 nstep_up thy ptp scr E l Skip_ a v)
neuper@38015
  1596
    | Skip (v,E) => ((*tracing("### nxt_up Repeat: Skip res ="^
neuper@37906
  1597
		(Sign.string_of_term(sign_of (assoc_thy thy)) res'));*)
neuper@37906
  1598
		    nstep_up thy ptp scr E l Skip_ a v))
neuper@37906
  1599
neuper@37906
  1600
  | nxt_up thy ptp scr E l _ (*no appy_: there was already a stac below*)
neuper@37906
  1601
  (Const ("Script.Repeat"(*2*),T) $ e) a v =
neuper@37906
  1602
    (case appy thy ptp (*upd_env*) E (*a,v)*) ((l@[R]):loc_) e a v  of
neuper@37906
  1603
      Appy lr => Appy lr
neuper@38015
  1604
    | Napp E => ((*tracing("### nxt_up Repeat a: ");*)
neuper@37906
  1605
		 nstep_up thy ptp scr E l Skip_ a v)
neuper@38015
  1606
    | Skip (v,E) => ((*tracing("### nxt_up Repeat: Skip res ="^
neuper@37906
  1607
		(Sign.string_of_term(sign_of (assoc_thy thy)) res'));*)
neuper@37906
  1608
		    nstep_up thy ptp scr E l Skip_ a v))
neuper@37906
  1609
(* val (thy, ptp, scr, E, l,   _,(t as Const ("Script.Try",_) $ e $ _), a, v) =
neuper@37906
  1610
       (thy, ptp, (Script sc), 
neuper@37906
  1611
	               E, up, ay,(go up sc),                            a, v);
neuper@37906
  1612
   *)
neuper@37906
  1613
  | nxt_up thy ptp scr E l _ (*makes Napp to Skip*)
neuper@37906
  1614
  (t as Const ("Script.Try",_) $ e $ _) a v = 
neuper@38053
  1615
    ((*tracing("### nxt_up Try " ^ term2str t);*)
neuper@37906
  1616
     nstep_up thy ptp scr E l Skip_ a v )
neuper@37906
  1617
(* val (thy, ptp, scr, E, l,   _,(t as Const ("Script.Try",_) $ e), a, v) =
neuper@37906
  1618
       (thy, ptp, (Script sc), 
neuper@37906
  1619
	               E, up, ay,(go up sc),                        a, v);
neuper@37906
  1620
   *)
neuper@37906
  1621
  | nxt_up thy ptp scr E l _ (*makes Napp to Skip*)
neuper@37906
  1622
  (t as Const ("Script.Try"(*2*),_) $ e) a v = 
neuper@38053
  1623
    ((*tracing("### nxt_up Try " ^ term2str t);*)
neuper@37906
  1624
     nstep_up thy ptp scr E l Skip_ a v)
neuper@37906
  1625
neuper@37906
  1626
neuper@37906
  1627
  | nxt_up thy ptp scr E l ay
neuper@37906
  1628
  (Const ("Script.Or",_) $ _ $ _ $ _) a v = nstep_up thy ptp scr E l ay a v
neuper@37906
  1629
neuper@37906
  1630
  | nxt_up thy ptp scr E l ay
neuper@37906
  1631
  (Const ("Script.Or",_) $ _ $ _) a v = nstep_up thy ptp scr E l ay a v
neuper@37906
  1632
neuper@37906
  1633
  | nxt_up thy ptp scr E l ay
neuper@37906
  1634
  (Const ("Script.Or",_) $ _ ) a v = 
neuper@37906
  1635
    nstep_up thy ptp scr E (drop_last l) ay a v
neuper@37906
  1636
(* val (thy, ptp, scr, E, l, ay, (Const ("Script.Seq",_) $ _ $ _ $ _), a, v) =
neuper@37906
  1637
       (thy, ptp, (Script sc), 
neuper@37906
  1638
		       E, up, ay,(go up sc),                           a, v);
neuper@37906
  1639
   *)
neuper@37906
  1640
  | nxt_up thy ptp scr E l ay (*all has been done in (*2*) below*)
neuper@37906
  1641
  (Const ("Script.Seq"(*1*),_) $ _ $ _ $ _) a v =
neuper@37906
  1642
    nstep_up thy ptp scr E l ay a v
neuper@37906
  1643
(* val (thy, ptp, scr, E, l, ay, (Const ("Script.Seq",_) $ _ $ e2), a, v) =
neuper@37906
  1644
       (thy, ptp, (Script sc), 
neuper@37906
  1645
		       E, up, ay,(go up sc),                        a, v);
neuper@37906
  1646
   *)
neuper@37906
  1647
  | nxt_up thy ptp scr E l ay (*comes from e2*)
neuper@37906
  1648
	   (Const ("Script.Seq"(*2*),_) $ _ $ e2) a v =
neuper@37906
  1649
    nstep_up thy ptp scr E l ay a v
neuper@37906
  1650
(* val (thy, ptp, scr, E, l, ay, (Const ("Script.Seq",_) $ _), a, v) =
neuper@37906
  1651
       (thy, ptp, (Script sc), 
neuper@37906
  1652
		       E, up, ay,(go up sc),                   a, v);
neuper@37906
  1653
   *)
neuper@37906
  1654
  | nxt_up thy ptp (scr as Script sc) E l ay (*comes from e1*)
neuper@37906
  1655
	   (Const ("Script.Seq",_) $ _) a v = 
neuper@37906
  1656
    if ay = Napp_
neuper@37906
  1657
    then nstep_up thy ptp scr E (drop_last l) Napp_ a v
neuper@37906
  1658
    else (*Skip_*)
neuper@37906
  1659
	let val up = drop_last l;
neuper@37906
  1660
	    val Const ("Script.Seq"(*2*),_) $ _ $ e2 = go up sc;
neuper@37906
  1661
	in case appy thy ptp E (up@[R]) e2 a v  of
neuper@37906
  1662
	    Appy lr => Appy lr
neuper@37906
  1663
	  | Napp E => nstep_up thy ptp scr E up Napp_ a v
neuper@37906
  1664
	  | Skip (v,E) => nstep_up thy ptp scr E up Skip_ a v end
neuper@37906
  1665
neuper@37906
  1666
  | nxt_up (thy,_) ptp scr E l ay t a v =
neuper@38053
  1667
    error ("nxt_up not impl for " ^ term2str t)
neuper@37906
  1668
neuper@37906
  1669
(* val (thy, ptp, (Script sc), E, l, ay,    a, v)=
neuper@37906
  1670
       (thy, ptp, scr,         E, l, Skip_, a, v);
neuper@37906
  1671
   val (thy, ptp, (Script sc), E, l, ay,    a, v)=
neuper@37906
  1672
       (thy, ptp, sc,          E, l, Skip_, a, v);
neuper@37906
  1673
   *)
neuper@37906
  1674
and nstep_up thy ptp (Script sc) E l ay a v = 
neuper@38053
  1675
  ((*tracing ("### nstep_up from: " ^ (loc_2str l));
neuper@38053
  1676
   tracing ("### nstep_up from: " ^ term2str (go l sc));*)
neuper@37906
  1677
   if 1 < length l
neuper@37906
  1678
   then 
neuper@37906
  1679
       let 
neuper@37906
  1680
	   val up = drop_last l; 
neuper@38053
  1681
       in ((*tracing("### nstep_up to: " ^ term2str (go up sc));*)
neuper@37906
  1682
	   nxt_up thy ptp (Script sc) E up ay (go up sc) a v ) end
neuper@37906
  1683
   else (*interpreted to end*)
neuper@37906
  1684
       if ay = Skip_ then Skip (v, E) else Napp E 
neuper@37906
  1685
);
neuper@37906
  1686
neuper@37906
  1687
(* decide for the next applicable stac in the script;
neuper@37906
  1688
   returns (stactic, value) - the value in case the script is finished 
neuper@37906
  1689
   12.8.02:         ~~~~~ and no assumptions ??? FIXME ???
neuper@37906
  1690
   20.8.02: must return p in case of finished, because the next script
neuper@37906
  1691
            consulted need not be the calling script:
neuper@37906
  1692
            in case of detail ie. _inserted_ PrfObjs, the next stac
neuper@37906
  1693
            has to searched in a script with PblObj.status<>Complete !
neuper@37906
  1694
            (.. not true for other details ..PrfObj ??????????????????
neuper@37906
  1695
   20.8.02: do NOT return safe (is only changed in locate !!!)
neuper@37906
  1696
*)
neuper@37906
  1697
(* val (thy, (pt,p), Rfuns {next_rule=ne,...}, RrlsState (f,f',rss,_)) = 
neuper@37906
  1698
       (thy', (pt,p), sc, RrlsState (ii t));
neuper@37906
  1699
   val (thy, (pt,p), Rfuns {next_rule=ne,...}, RrlsState (f,f',rss,_)) = 
neuper@37906
  1700
       (thy', (pt',p'), sc, is');
neuper@37906
  1701
   *)
bonzai@41948
  1702
fun next_tac (thy,_) (pt,p) (Rfuns {next_rule,...}) (RrlsState(f,f',rss,_), ctxt)=
bonzai@41948
  1703
    if f = f' then (End_Detail' (f',[])(*8.6.03*), (Uistate, e_ctxt), 
neuper@37906
  1704
		    (f', Sundef(*FIXME is no value of next_tac! vor 8.6.03*)))
neuper@37906
  1705
                                                          (*finished*)
neuper@37906
  1706
    else (case next_rule rss f of
bonzai@41948
  1707
	      NONE => (Empty_Tac_, (Uistate, e_ctxt), (e_term, Sundef)) 	  (*helpless*)
neuper@37926
  1708
(* val SOME (Thm (id,thm)) = next_rule rss f;
neuper@37906
  1709
   *)
neuper@37926
  1710
	    | SOME (Thm (id,thm))(*8.6.03: muss auch f' liefern ?!!*) => 
neuper@37906
  1711
	      (Rewrite' (thy, "e_rew_ord", e_rls,(*!?!8.6.03*) false,
neuper@37906
  1712
			 (id, string_of_thmI thm), f,(e_term,[(*!?!8.6.03*)])),
bonzai@41948
  1713
	       (Uistate, e_ctxt), (e_term, Sundef)))                 (*next stac*)
neuper@37906
  1714
neuper@37906
  1715
(* val(thy, ptp as (pt,(p,_)), sc as Script (h $ body),ScrState (E,l,a,v,s,b))=
neuper@37906
  1716
      ((thy',srls), (pt,pos),  sc,                     is);
neuper@37906
  1717
   *)
neuper@37906
  1718
  | next_tac thy (ptp as (pt,(p,_)):ptree * pos') (sc as Script (h $ body)) 
neuper@41972
  1719
	    (ScrState (E,l,a,v,s,b), ctxt) =
neuper@41972
  1720
      ((*tracing("### next_tac-----------------: E= ");
neuper@41972
  1721
         tracing( istate2str (ScrState (E,l,a,v,s,b)));*)
neuper@41972
  1722
       case if l = [] 
neuper@41972
  1723
            then appy thy ptp E [R] body NONE v
neuper@41972
  1724
            else nstep_up thy ptp sc E l Skip_ a v of
neuper@41972
  1725
         Skip (v, _) =>                                              (*finished*)
neuper@41972
  1726
           (case par_pbl_det pt p of
neuper@41972
  1727
	              (true, p', _) => 
neuper@41972
  1728
	                let val (_,pblID,_) = get_obj g_spec pt p';
neuper@41972
  1729
	                in (Check_Postcond' (pblID, (v, [(*8.6.03 NO asms???*)])), 
neuper@41972
  1730
	                  (e_istate, e_ctxt), (v,s)) 
neuper@41972
  1731
                end
neuper@41972
  1732
	            | (_, p', rls') => 
neuper@41972
  1733
                  (End_Detail' (e_term,[])(*8.6.03*), (e_istate, e_ctxt), (v,s)))
neuper@41972
  1734
       | Napp _ => (Empty_Tac_, (e_istate, e_ctxt), (e_term, Sundef))(*helpless*)
neuper@41972
  1735
       | Appy (m', scrst as (_,_,_,v,_,_)) => 
neuper@41972
  1736
           (m', (ScrState scrst, e_ctxt), (v, Sundef)))             (*next stac*)
neuper@37906
  1737
neuper@41972
  1738
  | next_tac _ _ _ (is, _) = error ("next_tac: not impl for " ^ (istate2str is));
neuper@37906
  1739
neuper@37906
  1740
neuper@37906
  1741
(*.create the initial interpreter state from the items of the guard.*)
neuper@37906
  1742
(* val (thy, itms, metID) = (thy, itms, mI);
neuper@37906
  1743
   *)
neuper@37906
  1744
fun init_scrstate thy itms metID =
neuper@37906
  1745
    let val actuals = itms2args thy metID itms;
neuper@37906
  1746
	val scr as Script sc = (#scr o get_met) metID;
neuper@37906
  1747
        val formals = formal_args sc
neuper@37906
  1748
	(*expects same sequence of (actual) args in itms 
neuper@37906
  1749
          and (formal) args in met*)
neuper@37906
  1750
	fun relate_args env [] [] = env
neuper@37906
  1751
	  | relate_args env _ [] = 
neuper@38031
  1752
	    error ("ERROR in creating the environment for '"
neuper@37906
  1753
			 ^id_of_scr sc^"' from \nthe items of the guard of "
neuper@37906
  1754
			 ^metID2str metID^",\n\
neuper@37906
  1755
			 \formal arg(s), from the script,\
neuper@37906
  1756
			 \ miss actual arg(s), from the guards env:\n"
neuper@37906
  1757
			 ^(string_of_int o length) formals
neuper@37906
  1758
			 ^" formals: "^terms2str formals^"\n"
neuper@37906
  1759
			 ^(string_of_int o length) actuals
neuper@37906
  1760
			 ^" actuals: "^terms2str actuals)
neuper@37906
  1761
	  | relate_args env [] actual_finds = env (*may drop Find!*)
neuper@37906
  1762
	  | relate_args env (a::aa) (f::ff) = 
neuper@37906
  1763
	    if type_of a = type_of f 
neuper@37906
  1764
	    then relate_args (env @ [(a, f)]) aa ff else 
neuper@38031
  1765
	    error ("ERROR in creating the environment for '"
neuper@37906
  1766
			 ^id_of_scr sc^"' from \nthe items of the guard of "
neuper@37906
  1767
			 ^metID2str metID^",\n\			 
neuper@37906
  1768
			 \different types of formal arg, from the script,\
neuper@37906
  1769
			 \ and actual arg, from the guards env:'\n\
neuper@37906
  1770
			 \formal: '"^term2str a^"::"^(type2str o type_of) a^"'\n\
neuper@37906
  1771
			 \actual: '"^term2str f^"::"^(type2str o type_of) f^"'\n\
neuper@37906
  1772
			 \in\n\
neuper@37906
  1773
			 \formals: "^terms2str formals^"\n\
neuper@37906
  1774
			 \actuals: "^terms2str actuals)
neuper@37906
  1775
        val env = relate_args [] formals actuals;
bonzai@41948
  1776
    in (ScrState (env,[],NONE,e_term,Safe,true), e_ctxt, scr):istate * Proof.context * scr end;
neuper@37906
  1777
neuper@37906
  1778
(*.decide, where to get script/istate from:
neuper@37906
  1779
   (*1*) from PblObj.env: at begin of script if no init_form
neuper@37906
  1780
   (*2*) from PblObj/PrfObj: if stac is in the middle of the script
neuper@37906
  1781
   (*3*) from rls/PrfObj: in case of detail a ruleset.*)
neuper@37906
  1782
(* val (thy', (p,p_), pt) = (thy', (p,p_), pt);
neuper@37906
  1783
   *)
neuper@37906
  1784
fun from_pblobj_or_detail' thy' (p,p_) pt =
neuper@37935
  1785
    if member op = [Pbl,Met] p_
neuper@37906
  1786
    then case get_obj g_env pt p of
neuper@38031
  1787
	     NONE => error "from_pblobj_or_detail': no istate"
neuper@37926
  1788
	   | SOME is =>
neuper@37906
  1789
	     let val metID = get_obj g_metID pt p
neuper@37906
  1790
		 val {srls,...} = get_met metID
neuper@37906
  1791
	     in (srls, is, (#scr o get_met) metID) end
neuper@37906
  1792
    else
neuper@37906
  1793
    let val (pbl,p',rls') = par_pbl_det pt p
neuper@37906
  1794
    in if pbl 
neuper@37906
  1795
       then (*2*)
neuper@37906
  1796
	   let val thy = assoc_thy thy'
neuper@37906
  1797
	       val PblObj{meth=itms,...} = get_obj I pt p'
neuper@37906
  1798
	       val metID = get_obj g_metID pt p'
neuper@37906
  1799
	       val {srls,...} = get_met metID
neuper@37906
  1800
	   in (*if last_elem p = 0 (*nothing written to pt yet*)
bonzai@41948
  1801
	      then let val (is, ctxt, sc) = init_scrstate thy itms metID
neuper@37906
  1802
		   in (srls, is, sc) end
bonzai@41953
  1803
	      else*) (srls, get_loc pt (p,p_), (#scr o get_met) metID)
neuper@37906
  1804
	   end
neuper@37906
  1805
       else (*3*)
neuper@37906
  1806
	   (e_rls, (*FIXME: get from pbl or met !!!
neuper@37906
  1807
		    unused for Rrls in locate_gen, next_tac*)
bonzai@41953
  1808
	    get_loc pt (p,p_),
neuper@37906
  1809
	    case rls' of
neuper@37906
  1810
		Rls {scr=scr,...} => scr
neuper@37906
  1811
	      | Seq {scr=scr,...} => scr
neuper@37906
  1812
	      | Rrls {scr=rfuns,...} => rfuns)
neuper@37906
  1813
    end;
neuper@37906
  1814
neuper@37906
  1815
(*.get script and istate from PblObj, see (*1*) above.*)
bonzai@41948
  1816
fun from_pblobj' thy' (p,p_) pt =
neuper@37906
  1817
    let val p' = par_pblobj pt p
neuper@37906
  1818
	val thy = assoc_thy thy'
neuper@37906
  1819
	val PblObj{meth=itms,...} = get_obj I pt p'
neuper@37906
  1820
	val metID = get_obj g_metID pt p'
neuper@37906
  1821
	val {srls,scr,...} = get_met metID
neuper@37906
  1822
    in if last_elem p = 0 (*nothing written to pt yet*)
bonzai@41948
  1823
       then let val (is, ctxt, scr) = init_scrstate thy itms metID
bonzai@41948
  1824
	    in (srls, (is, ctxt), scr) end
bonzai@41953
  1825
       else (srls, get_loc pt (p,p_), scr)
neuper@37906
  1826
    end;
neuper@37906
  1827
    
neuper@37906
  1828
(*.get the stactics and problems of a script as tacs
neuper@37906
  1829
  instantiated with the current environment;
neuper@37906
  1830
  l is the location which generated the given formula.*)
neuper@37906
  1831
(*WN.12.5.03: quick-and-dirty repair for listexpressions*)
neuper@37906
  1832
fun is_spec_pos Pbl = true
neuper@37906
  1833
  | is_spec_pos Met = true
neuper@37906
  1834
  | is_spec_pos _ = false;
neuper@37906
  1835
neuper@37906
  1836
(*. fetch _all_ tactics from script .*)
neuper@37906
  1837
fun sel_rules _ (([],Res):pos') = 
neuper@37906
  1838
    raise PTREE "no tactics applicable at the end of a calculation"
neuper@37906
  1839
| sel_rules pt (p,p_) =
neuper@37906
  1840
  if is_spec_pos p_ 
neuper@37906
  1841
  then [get_obj g_tac pt p]
neuper@37906
  1842
  else
neuper@37906
  1843
    let val pp = par_pblobj pt p;
neuper@37906
  1844
	val thy' = (get_obj g_domID pt pp):theory';
neuper@37906
  1845
	val thy = assoc_thy thy';
neuper@37906
  1846
	val metID = get_obj g_metID pt pp;
neuper@37906
  1847
	val metID' =if metID =e_metID then(thd3 o snd3)(get_obj g_origin pt pp)
neuper@37906
  1848
		     else metID
neuper@37906
  1849
	val {scr=Script sc,srls,...} = get_met metID'
bonzai@41953
  1850
	val ScrState (env,_,a,v,_,_) = get_istate pt (p,p_);
neuper@37906
  1851
    in map ((stac2tac pt thy) o rep_stacexpr o #2 o
neuper@37906
  1852
	    (handle_leaf "selrul" thy' srls env a v)) (stacpbls sc) end;
neuper@37906
  1853
(*
neuper@38058
  1854
> val Script sc = (#scr o get_met) ("SqRoot","sqrt-equ-test");
neuper@40836
  1855
> val env = [((term_of o the o (parse (Thy_Info.get_theory "Isac"))) "bdv",
neuper@40836
  1856
             (term_of o the o (parse (Thy_Info.get_theory "Isac"))) "x")];
neuper@37926
  1857
> map ((stac2tac pt thy) o #2 o(subst_stacexpr env NONE e_term)) (stacpbls sc);
neuper@37906
  1858
*)
neuper@37906
  1859
neuper@37906
  1860
neuper@37906
  1861
(*. fetch tactics from script and filter _applicable_ tactics;
neuper@37906
  1862
    in case of Rewrite_Set* go down to _atomic_ rewrite-tactics .*)
neuper@37906
  1863
fun sel_appl_atomic_tacs _ (([],Res):pos') = 
neuper@37906
  1864
    raise PTREE "no tactics applicable at the end of a calculation"
neuper@37906
  1865
  | sel_appl_atomic_tacs pt (p,p_) =
neuper@37906
  1866
    if is_spec_pos p_ 
neuper@37906
  1867
    then [get_obj g_tac pt p]
neuper@37906
  1868
    else
neuper@37906
  1869
	let val pp = par_pblobj pt p
neuper@37906
  1870
	    val thy' = (get_obj g_domID pt pp):theory'
neuper@37906
  1871
	    val thy = assoc_thy thy'
neuper@37906
  1872
	    val metID = get_obj g_metID pt pp
neuper@37906
  1873
	    val metID' =if metID = e_metID 
neuper@37906
  1874
			then (thd3 o snd3) (get_obj g_origin pt pp)
neuper@37906
  1875
			else metID
neuper@37906
  1876
	    val {scr=Script sc,srls,erls,rew_ord'=ro,...} = get_met metID'
bonzai@41953
  1877
	    val ScrState (env,_,a,v,_,_) = get_istate pt (p,p_)
neuper@37906
  1878
	    val alltacs = (*we expect at least 1 stac in a script*)
neuper@37906
  1879
		map ((stac2tac pt thy) o rep_stacexpr o #2 o
neuper@37906
  1880
		     (handle_leaf "selrul" thy' srls env a v)) (stacpbls sc)
neuper@37906
  1881
	    val f = case p_ of
neuper@37906
  1882
			Frm => get_obj g_form pt p
neuper@37906
  1883
		      | Res => (fst o (get_obj g_result pt)) p
neuper@37906
  1884
	(*WN071231 ? replace atomic_appl_tacs with applicable_in (ineff!) ?*)
neuper@37906
  1885
	in (distinct o flat o 
neuper@37906
  1886
	    (map (atomic_appl_tacs thy ro erls f))) alltacs end;
neuper@37906
  1887
	
neuper@37906
  1888
neuper@37906
  1889
(*
neuper@37906
  1890
end
neuper@37906
  1891
open Interpreter;
neuper@37906
  1892
*)
neuper@37906
  1893
neuper@37906
  1894
(* use"ME/script.sml";
neuper@37906
  1895
   use"script.sml";
neuper@37906
  1896
   *)