src/Tools/isac/Interpret/script.sml
author Walther Neuper <wneuper@ist.tugraz.at>
Sat, 12 Nov 2016 17:21:43 +0100
changeset 59257 a1daf71787b1
parent 59253 f0bb15a046ae
child 59258 6b1aad933adb
permissions -rw-r--r--
--- polished LUCAS_INTERPRETER

Notes
# "---" marks changesets where Test_Isac does not work
# outcommented tests in script.sml moved from src/ to test/
neuper@42248
     1
(* Title:  interpreter for scripts
neuper@42248
     2
   Author: Walther Neuper 2000
neuper@42248
     3
   (c) due to copyright terms
neuper@42248
     4
12345678901234567890123456789012345678901234567890123456789012345678901234567890
neuper@42248
     5
        10        20        30        40        50        60        70        80
neuper@42248
     6
*)
neuper@37906
     7
wneuper@59257
     8
signature LUCAS_INTERPRETER =
neuper@37906
     9
sig
neuper@37906
    10
wneuper@59257
    11
  type step = tac_ * mout * ptree * pos' * pos' list
wneuper@59257
    12
  datatype locate = NotLocatable | Steps of istate * step list
wneuper@59257
    13
  
wneuper@59257
    14
  val next_tac : (*diss: next-tactic-function*)
wneuper@59257
    15
    theory' * rls -> ptree * pos' -> scr -> istate * 'a -> tac_ * (istate * 'a) * (term * safe)
wneuper@59257
    16
  val locate_gen : (*diss: locate-function*)
wneuper@59257
    17
    theory' * rls -> tac_ -> ptree * pos' -> scr * 'a -> istate * Proof.context -> locate
wneuper@59257
    18
  val sel_rules : ptree -> pos' -> tac list 
wneuper@59257
    19
  val init_form : 'a -> scr -> (term * term) list -> term option
neuper@37906
    20
  val formal_args : term -> term list
neuper@37906
    21
wneuper@59257
    22
  val tac_2tac : tac_ -> tac
wneuper@59257
    23
  val init_scrstate : theory -> itm list -> metID -> istate * Proof.context * scr
wneuper@59257
    24
  val from_pblobj' : theory' -> pos * pos_ -> ptree -> rls * (istate * Proof.context) * scr
wneuper@59257
    25
  val from_pblobj_or_detail' : theory' -> pos * pos_ -> ptree -> 
wneuper@59257
    26
    rls * (istate * Proof.context) * scr
wneuper@59257
    27
  val rule2thm'' : rule -> thm''
wneuper@59257
    28
  val rule2rls' : rule -> string
wneuper@59257
    29
wneuper@59257
    30
  val itms2args : 'a -> metID -> itm list -> term list
neuper@37906
    31
end 
neuper@37906
    32
wneuper@59257
    33
(**)
wneuper@59257
    34
structure Lucin: LUCAS_INTERPRETER(**) =
neuper@37906
    35
struct
wneuper@59257
    36
(**)
wneuper@59257
    37
(* traces the leaves (ie. non-tactical nodes) of Prog found by next_tac, see "and scr" *)   
neuper@38006
    38
val trace_script = Unsynchronized.ref false;
neuper@37906
    39
wneuper@59257
    40
(* data for creating a new node in ctree; designed for use as:
wneuper@59257
    41
   fun ass* scrstate steps = / ... case ass* scrstate steps of /
wneuper@59257
    42
   Assoc (scrstate, steps) => ... ass* scrstate steps *)
wneuper@59257
    43
type step =
wneuper@59257
    44
    tac_         (*transformed from associated tac                   *)
wneuper@59257
    45
    * mout       (*result with indentation etc.                      *)
wneuper@59257
    46
    * ptree      (*containing node created by tac_ + resp. scrstate  *)
wneuper@59257
    47
    * pos'       (*position in ptree; ptree * pos' is the proofstate *)
wneuper@59257
    48
    * pos' list; (*of ptree-nodes probably cut (by fst tac_)         *)
neuper@37906
    49
wneuper@59253
    50
fun rule2thm'' (Thm (id, thm)) = (id, thm) : thm''
wneuper@59257
    51
  | rule2thm'' r = error ("rule2thm': not defined for " ^ rule2str r);
neuper@37906
    52
fun rule2rls' (Rls_ rls) = id_rls rls
wneuper@59257
    53
  | rule2rls' r = error ("rule2rls': not defined for " ^ rule2str r);
neuper@37906
    54
neuper@37906
    55
(*.makes a (rule,term) list to a Step (m, mout, pt', p', cid) for solve;
neuper@37906
    56
   complicated with current t in rrlsstate.*)
wneuper@59257
    57
fun rts2steps steps ((pt, p), (f, f'', rss, rts), (thy', ro, er, pa)) [(r, (f', am))] =
neuper@41996
    58
      let
neuper@41996
    59
        val thy = assoc_thy thy'
neuper@41996
    60
        val ctxt = get_ctxt pt p |> insert_assumptions am
wneuper@59253
    61
	      val m = Rewrite' (thy', ro, er, pa, rule2thm'' r, f, (f', am))
neuper@41996
    62
	      val is = RrlsState (f', f'', rss, rts)
wneuper@59257
    63
	      val p = case p of (_, Frm) => p | (p', Res) => (lev_on p', Res) | _ => error "rts2steps: p1"
neuper@41996
    64
	      val (p', cid, mout, pt') = generate1 thy m (is, ctxt) p pt
neuper@41996
    65
      in (is, (m, mout, pt', p', cid) :: steps) end
wneuper@59257
    66
  | rts2steps steps ((pt, p) ,(f, f'', rss, rts), (thy', ro, er, pa)) ((r, (f', am)) :: rts') =
neuper@41996
    67
      let
neuper@41996
    68
        val thy = assoc_thy thy'
neuper@41996
    69
        val ctxt = get_ctxt pt p |> insert_assumptions am
wneuper@59257
    70
	      val m = Rewrite' (thy', ro, er, pa, rule2thm'' r, f, (f', am))
wneuper@59257
    71
	      val is = RrlsState (f', f'', rss, rts)
wneuper@59257
    72
	      val p = case p of (_, Frm) => p | (p', Res) => (lev_on p', Res) | _ => error "rts2steps: p1"
neuper@41996
    73
	      val (p', cid, mout, pt') = generate1 thy m (is, ctxt) p pt
neuper@41996
    74
      in rts2steps ((m, mout, pt', p', cid)::steps) 
wneuper@59257
    75
		    ((pt', p'), (f', f'', rss, rts), (thy', ro, er, pa)) rts'
wneuper@59257
    76
		  end
wneuper@59257
    77
  | rts2steps _ _ _ = error "rts2steps: uncovered fun-def"
neuper@37906
    78
wneuper@59257
    79
(* functions for the environment stack: NOT YET IMPLEMENTED
wneuper@59257
    80
fun accessenv id es = the (assoc ((top es) : env, id))
wneuper@59257
    81
    handle _ => error ("accessenv: " ^ free2str id ^ " not in env");
wneuper@59257
    82
fun updateenv id vl (es : env stack) = 
wneuper@59257
    83
    (push (overwrite(top es, (id, vl))) (pop es)) : env stack;
wneuper@59257
    84
fun pushenv id vl (es : env stack) = 
wneuper@59257
    85
    (push (overwrite(top es, (id, vl))) es) : env stack;
wneuper@59257
    86
val popenv = pop : env stack -> env stack;
wneuper@59257
    87
*)
neuper@37906
    88
neuper@37906
    89
fun de_esc_underscore str =
wneuper@59257
    90
  let
wneuper@59257
    91
    fun scan [] = []
wneuper@59257
    92
    | scan (s :: ss) = if s = "'" then (scan ss) else (s :: (scan ss))
neuper@40836
    93
  in (implode o scan o Symbol.explode) str end;
neuper@37906
    94
neuper@37906
    95
(*go at a location in a script and fetch the contents*)
neuper@37906
    96
fun go [] t = t
wneuper@59257
    97
  | go (D::p) (Abs(_, _, t0)) = go (p : loc_) t0
wneuper@59257
    98
  | go (L::p) (t1 $ _) = go p t1
wneuper@59257
    99
  | go (R::p) (_ $ t2) = go p t2
wneuper@59257
   100
  | go l _ = error ("go: no " ^ loc_2str l);
neuper@37906
   101
neuper@37906
   102
(*.get argument of first stactic in a script for init_form.*)
wneuper@59257
   103
fun get_stac thy (_ $ body) =
neuper@37906
   104
  let
neuper@37906
   105
    fun get_t y (Const ("Script.Seq",_) $ e1 $ e2) a = 
wneuper@59257
   106
    	  (case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   107
      | get_t y (Const ("Script.Seq",_) $ e1 $ e2 $ a) _ = 
wneuper@59257
   108
    	  (case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   109
      | get_t y (Const ("Script.Try",_) $ e) a = get_t y e a
neuper@37906
   110
      | get_t y (Const ("Script.Try",_) $ e $ a) _ = get_t y e a
neuper@37906
   111
      | get_t y (Const ("Script.Repeat",_) $ e) a = get_t y e a
neuper@37906
   112
      | get_t y (Const ("Script.Repeat",_) $ e $ a) _ = get_t y e a
neuper@37906
   113
      | get_t y (Const ("Script.Or",_) $e1 $ e2) a =
wneuper@59257
   114
    	  (case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   115
      | get_t y (Const ("Script.Or",_) $e1 $ e2 $ a) _ =
wneuper@59257
   116
    	  (case get_t y e1 a of NONE => get_t y e2 a | la => la)
wneuper@59257
   117
      | get_t y (Const ("Script.While",_) $ _ $ e) a = get_t y e a
wneuper@59257
   118
      | get_t y (Const ("Script.While",_) $ _ $ e $ a) _ = get_t y e a
wneuper@59257
   119
      | get_t y (Const ("Script.Letpar",_) $ e1 $ Abs (_, _, e2)) a = 
wneuper@59257
   120
    	  (case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@41968
   121
    (*| get_t y (Const ("HOL.Let",_) $ e1 $ Abs (_,_,e2)) a =
wneuper@59257
   122
	      (case get_t y e1 a of NONE => get_t y e2 a | la => la)
neuper@37906
   123
      | get_t y (Abs (_,_,e)) a = get_t y e a*)
wneuper@59257
   124
      | get_t y (Const ("HOL.Let",_) $ e1 $ Abs (_, _, _)) a =
neuper@37906
   125
    	get_t y e1 a (*don't go deeper without evaluation !*)
wneuper@59257
   126
      | get_t _ (Const ("If", _) $ _ $ _ $ _) _ = NONE
neuper@37926
   127
    	(*(case get_t y e1 a of NONE => get_t y e2 a | la => la)*)
neuper@37906
   128
    
wneuper@59257
   129
      | get_t _ (Const ("Script.Rewrite",_) $ _ $ _ $ a) _ = SOME a
wneuper@59257
   130
      | get_t _ (Const ("Script.Rewrite",_) $ _ $ _    ) a = SOME a
wneuper@59257
   131
      | get_t _ (Const ("Script.Rewrite'_Inst",_) $ _ $ _ $ _ $ a) _ = SOME a
wneuper@59257
   132
      | get_t _ (Const ("Script.Rewrite'_Inst",_) $ _ $ _ $ _ )    a = SOME a
wneuper@59257
   133
      | get_t _ (Const ("Script.Rewrite'_Set",_) $ _ $ _ $ a) _ = SOME a
wneuper@59257
   134
      | get_t _ (Const ("Script.Rewrite'_Set",_) $ _ $ _ )    a = SOME a
wneuper@59257
   135
      | get_t _ (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ _ $ _ $a)_ =SOME a
wneuper@59257
   136
      | get_t _ (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ _ $ _ )  a =SOME a
wneuper@59257
   137
      | get_t _ (Const ("Script.Calculate",_) $ _ $ a) _ = SOME a
wneuper@59257
   138
      | get_t _ (Const ("Script.Calculate",_) $ _ )    a = SOME a
neuper@37906
   139
    
wneuper@59257
   140
      | get_t _ (Const ("Script.Substitute",_) $ _ $ a) _ = SOME a
wneuper@59257
   141
      | get_t _ (Const ("Script.Substitute",_) $ _ )    a = SOME a
neuper@37906
   142
    
wneuper@59257
   143
      | get_t _ (Const ("Script.SubProblem",_) $ _ $ _) _ = NONE
neuper@37906
   144
wneuper@59257
   145
      | get_t _ _ _ = ((*tracing ("### get_t yac: list-expr "^(term2str x));*) NONE)
wneuper@59257
   146
    in get_t thy body e_term end
wneuper@59257
   147
  | get_stac _ t = error ("get_stac: no fun-def. for " ^ term2str t);
neuper@37906
   148
    
neuper@48763
   149
fun init_form thy (Prog sc) env =
wneuper@59257
   150
    (case get_stac thy sc of NONE => NONE | SOME stac => SOME (subst_atomic env stac))
neuper@38031
   151
  | init_form _ _ _ = error "init_form: no match";
neuper@37906
   152
wneuper@59257
   153
(* get the arguments of the script out of the scripts parsetree *)
wneuper@59257
   154
fun formal_args scr = (fst o split_last o snd o strip_comb) scr;
neuper@37906
   155
wneuper@59257
   156
(* get the identifier of the script out of the scripts parsetree *)
neuper@37906
   157
fun id_of_scr sc = (id_of o fst o strip_comb) sc;
neuper@37906
   158
wneuper@59257
   159
(*WN020526: not clear, when a is available in ass_up for eval_true*)
neuper@37926
   160
(*WN060906: in "fun handle_leaf" eg. uses "SOME M__"(from some PREVIOUS
neuper@37906
   161
  curried Rewrite) for CURRENT value (which may be different from PREVIOUS);
neuper@37926
   162
  thus "NONE" must be set at the end of currying (ill designed anyway)*)
wneuper@59257
   163
fun upd_env_opt env (SOME a, v) = upd_env env (a, v)
wneuper@59257
   164
  | upd_env_opt env (NONE, _) = 
wneuper@59257
   165
      ((*tracing ("*** upd_env_opt: (NONE," ^ term2str v ^ ")");*) env);
neuper@37906
   166
wneuper@59257
   167
type dsc = typ; (* <-> nam..unknow in Descript.thy *)
neuper@37906
   168
neuper@37906
   169
(*.create the actual parameters (args) of script: their order 
neuper@37906
   170
  is given by the order in met.pat .*)
neuper@37906
   171
(*WN.5.5.03: ?: does this allow for different descriptions ???
neuper@37906
   172
             ?: why not taken from formal args of script ???
neuper@37906
   173
!: FIXXXME penv: push it here in itms2args into script-evaluation*)
neuper@37906
   174
(* val (thy, mI, itms) = (thy, metID, itms);
neuper@37906
   175
   *)
wneuper@59257
   176
val errmsg = "ERROR: the guard is missing (#ppc in 'type met' added in prep_met)."
wneuper@59257
   177
fun itms2args _ mI (itms : itm list) =
wneuper@59257
   178
  let
wneuper@59257
   179
    val mvat = max_vt itms
wneuper@59257
   180
    fun okv mvat (_, vats, b, _, _) = member op = vats mvat andalso b
wneuper@59257
   181
    val itms = filter (okv mvat) itms
wneuper@59257
   182
    fun test_dsc d (_, _, _, _, itm_) = (d = d_in itm_)
wneuper@59257
   183
    fun itm2arg itms (_,(d,_)) =
wneuper@59257
   184
        case find_first (test_dsc d) itms of
wneuper@59257
   185
          NONE => error ("itms2args: '" ^ term2str d ^ "' not in itms")
wneuper@59257
   186
        | SOME (_, _, _, _, itm_) => penvval_in itm_
wneuper@59257
   187
      (*| SOME (_,_,_,_,itm_) => mk_arg thy (d_in itm_) (ts_in itm_);
wneuper@59257
   188
            penv postponed; presently penv holds already env for script*)
wneuper@59257
   189
    val pats = (#ppc o get_met) mI
wneuper@59257
   190
    val _ = if pats = [] then raise ERROR errmsg else ()
wneuper@59257
   191
  in (flat o (map (itm2arg itms))) pats end;
neuper@37906
   192
wneuper@59257
   193
(* convert a script-tac 'stac' to a tactic 'tac';
wneuper@59257
   194
   if stac is an initac, then convert to a 'tac_' (as required in appy).
wneuper@59257
   195
   arg ptree for pushing the thy specified in rootpbl into subpbls    *)
wneuper@59257
   196
fun stac2tac_ _ thy (Const ("Script.Rewrite", _) $ Free (thmID, _) $ _ $ _) =
wneuper@59257
   197
    let
wneuper@59257
   198
      val tid = (de_esc_underscore o strip_thy) thmID
wneuper@59257
   199
    in (Rewrite (tid, assoc_thm'' thy tid), Empty_Tac_) end
wneuper@59257
   200
  | stac2tac_ _ thy (Const ("Script.Rewrite'_Inst", _) $ sub $ Free (thmID, _) $ _ $ _) =
wneuper@59257
   201
    let
wneuper@59257
   202
      val subML = ((map isapair2pair) o isalist2list) sub
wneuper@59257
   203
      val subStr = subst2subs subML
wneuper@59257
   204
      val tid = (de_esc_underscore o strip_thy) thmID (*4.10.02 unnoetig*)
wneuper@59257
   205
    in (Rewrite_Inst (subStr, (tid, assoc_thm'' thy tid)), Empty_Tac_) end
wneuper@59257
   206
  | stac2tac_ _ _ (Const ("Script.Rewrite'_Set",_) $ Free (rls, _) $ _ $ _) =
wneuper@59257
   207
     (Rewrite_Set ((de_esc_underscore o strip_thy) rls), Empty_Tac_)
wneuper@59257
   208
  | stac2tac_ _ _ (Const ("Script.Rewrite'_Set'_Inst", _) $ sub $ Free (rls, _) $ _ $ _) =
wneuper@59257
   209
    let
wneuper@59257
   210
      val subML = ((map isapair2pair) o isalist2list) sub;
wneuper@59257
   211
      val subStr = subst2subs subML;
wneuper@59257
   212
    in (Rewrite_Set_Inst (subStr, rls), Empty_Tac_) end
wneuper@59257
   213
  | stac2tac_ _ _ (Const ("Script.Calculate", _) $ Free (op_, _) $ _) = (Calculate op_, Empty_Tac_)
wneuper@59257
   214
  | stac2tac_ _ _ (Const ("Script.Take", _) $ t) = (Take (term2str t), Empty_Tac_)
wneuper@59257
   215
  | stac2tac_ _ _ (Const ("Script.Substitute", _) $ isasub $ _) =
wneuper@59257
   216
    (Substitute ((subte2sube o isalist2list) isasub), Empty_Tac_)
wneuper@59257
   217
  | stac2tac_ _ thy (Const("Script.Check'_elementwise", _) $ _ $ 
wneuper@59257
   218
    (Const ("Set.Collect", _) $ Abs (_, _, pred))) =
wneuper@59257
   219
      (Check_elementwise (term_to_string''' thy pred), Empty_Tac_)
wneuper@59257
   220
  | stac2tac_ _ _ (Const("Script.Or'_to'_List", _) $ _ ) = (Or_to_List, Empty_Tac_)
wneuper@59257
   221
  | stac2tac_ _ _ (Const ("Script.Tac", _) $ Free (str, _)) = 
wneuper@59257
   222
    (Tac ((de_esc_underscore o strip_thy) str),  Empty_Tac_) 
neuper@37906
   223
neuper@41990
   224
    (*compare "| assod _ (Subproblem'"*)
wneuper@59257
   225
  | stac2tac_ pt _ (stac as Const ("Script.SubProblem",_) $
wneuper@59257
   226
	  (Const ("Product_Type.Pair",_) $Free (dI', _) $ (Const ("Product_Type.Pair", _) $ pI' $ mI')) $ 
wneuper@59257
   227
	    ags') =
wneuper@59257
   228
    let
wneuper@59257
   229
      val dI = ((implode o drop_last(*.."'"*) o Symbol.explode) dI')(*^""*);
wneuper@59257
   230
      val thy = maxthy (assoc_thy dI) (rootthy pt);
wneuper@59257
   231
	    val pI = ((map (de_esc_underscore o free2str)) o isalist2list) pI';
wneuper@59257
   232
	    val mI = ((map (de_esc_underscore o free2str)) o isalist2list) mI';
wneuper@59257
   233
	    val ags = isalist2list ags';
wneuper@59257
   234
	    val (pI, pors, mI) = 
wneuper@59257
   235
	      if mI = ["no_met"] 
wneuper@59257
   236
	      then
wneuper@59257
   237
          let
wneuper@59257
   238
            val pors = (match_ags thy ((#ppc o get_pbt) pI) ags)
wneuper@59257
   239
		          handle ERROR "actual args do not match formal args" 
wneuper@59257
   240
			        => (match_ags_msg pI stac ags(*raise exn*); [])
wneuper@59257
   241
		        val pI' = refine_ori' pors pI;
wneuper@59257
   242
		      in (pI', pors (* refinement over models with diff.prec only *), 
wneuper@59257
   243
		          (hd o #met o get_pbt) pI') end
wneuper@59257
   244
	      else (pI, (match_ags thy ((#ppc o get_pbt) pI) ags)
wneuper@59257
   245
		      handle ERROR "actual args do not match formal args"
wneuper@59257
   246
		      => (match_ags_msg pI stac ags(*raise exn*); []), mI);
wneuper@59257
   247
      val (fmz_, vals) = oris2fmz_vals pors;
wneuper@59257
   248
	    val {cas,ppc,thy,...} = get_pbt pI
wneuper@59257
   249
	    val dI = theory2theory' thy (*.take dI from _refined_ pbl.*)
wneuper@59257
   250
	    val dI = theory2theory' (maxthy (assoc_thy dI) (rootthy pt));
wneuper@59257
   251
      val ctxt = dI |> Thy_Info.get_theory |> Proof_Context.init_global |> declare_constraints' vals
wneuper@59257
   252
	    val hdl =
wneuper@59257
   253
        case cas of
wneuper@59257
   254
		      NONE => pblterm dI pI
wneuper@59257
   255
		    | SOME t => subst_atomic ((vars_of_pbl_' ppc) ~~~ vals) t
wneuper@59257
   256
      val f = subpbl (strip_thy dI) pI
wneuper@59257
   257
    in (Subproblem (dI, pI),	Subproblem' ((dI, pI, mI), pors, hdl, fmz_, ctxt, f))
wneuper@59257
   258
    end
wneuper@59257
   259
  | stac2tac_ _ thy t = error ("stac2tac_ TODO: no match for " ^ term_to_string''' thy t);
neuper@37906
   260
neuper@37906
   261
fun stac2tac pt thy t = (fst o stac2tac_ pt thy) t;
neuper@37906
   262
neuper@37906
   263
datatype ass = 
neuper@41983
   264
    Ass of
neuper@41983
   265
      tac_ *   (* SubProblem gets args instantiated in assod *)
neuper@41983
   266
  	  term     (* for itr_arg, result in ets *)
neuper@41983
   267
  | AssWeak of
neuper@41983
   268
      tac_ *
neuper@41983
   269
  	  term     (*for itr_arg,result in ets*)
neuper@41983
   270
  | NotAss;
neuper@37906
   271
neuper@42360
   272
(* check if tac_ is associated with stac.
neuper@42360
   273
   Additional task: check if term t (the result has been calculated from) in tac_
neuper@42360
   274
   has been changed (see "datatype tac_"); if yes, recalculate result
neuper@42360
   275
   TODO.WN120106 recalculate impl.only for Substitute'
neuper@37906
   276
args
neuper@42360
   277
  pt     : ptree for pushing the thy specified in rootpbl into subpbls
neuper@42360
   278
  d      : unused (planned for data for comparison)
neuper@42360
   279
  tac_   : from user (via applicable_in); to be compared with ...
neuper@42360
   280
  stac   : found in Script
neuper@37906
   281
returns
neuper@42360
   282
  Ass    : associated: e.g. thmID in stac = thmID in m
neuper@37906
   283
                       +++ arg   in stac = arg   in m
neuper@42360
   284
  AssWeak: weakly ass.:e.g. thmID in stac = thmID in m, //arg//
neuper@42360
   285
  NotAss :             e.g. thmID in stac/=/thmID in m (not =)
neuper@42360
   286
*)
wneuper@59257
   287
fun assod _ _ (m as Rewrite_Inst' (_, _, _, _, _, thm'' as (thmID, _), f, (f', _))) stac =
wneuper@59252
   288
    (case stac of
wneuper@59257
   289
	    (Const ("Script.Rewrite'_Inst", _) $ _ $ Free (thmID_, _) $ _ $ f_) =>
wneuper@59257
   290
	      if thmID = thmID_
wneuper@59257
   291
        then 
wneuper@59257
   292
	        if f = f_ 
wneuper@59257
   293
          then ((*tracing"3### assod ..Ass";*) Ass (m,f')) 
wneuper@59257
   294
	        else ((*tracing"3### assod ..AssWeak";*) AssWeak(m, f'))
wneuper@59257
   295
	      else ((*tracing"3### assod ..NotAss";*) NotAss)
wneuper@59257
   296
    | (Const ("Script.Rewrite'_Set'_Inst",_) $ _ $ Free (rls_, _) $ _ $ f_) =>
wneuper@59257
   297
	      if contains_rule (Thm thm'') (assoc_rls rls_)
wneuper@59257
   298
        then if f = f_ then Ass (m,f') else AssWeak (m,f')
wneuper@59257
   299
	      else NotAss
wneuper@59257
   300
    | _ => NotAss)
wneuper@59257
   301
  | assod _ _ (m as Rewrite' (_, _, _, _, thm'' as (thmID, _), f, (f', _))) stac =
wneuper@59252
   302
    (case stac of
wneuper@59257
   303
	    (Const ("Script.Rewrite", _) $ Free (thmID_, _) $ _ $ f_) =>
wneuper@59257
   304
	      ((*tracing ("3### assod: stac = " ^ ter2str t);
wneuper@59257
   305
	       tracing ("3### assod: f(m)= " ^ term2str f);*)
wneuper@59257
   306
	      if thmID = thmID_
wneuper@59257
   307
        then 
wneuper@59257
   308
	        if f = f_
wneuper@59257
   309
          then ((*tracing"3### assod ..Ass";*) Ass (m,f')) 
wneuper@59257
   310
	        else 
wneuper@59257
   311
            ((*tracing"### assod ..AssWeak";
wneuper@59257
   312
		         tracing("### assod: f(m)  = " ^ term2str f);
wneuper@59257
   313
		         tracing("### assod: f(stac)= " ^ term2str f_)*)
wneuper@59257
   314
		         AssWeak (m,f'))
wneuper@59257
   315
	      else ((*tracing"3### assod ..NotAss";*) NotAss))
wneuper@59257
   316
    | (Const ("Script.Rewrite'_Set", _) $ Free (rls_, _) $ _ $ f_) =>
wneuper@59257
   317
	       if contains_rule (Thm thm'') (assoc_rls rls_)
wneuper@59257
   318
         then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   319
	       else NotAss
wneuper@59257
   320
    | _ => NotAss)
wneuper@59257
   321
  | assod _ _ (m as Rewrite_Set_Inst' (_, _, _, rls, f, (f', _))) 
wneuper@59257
   322
      (Const ("Script.Rewrite'_Set'_Inst", _) $ _ $ Free (rls_, _) $ _ $ f_) = 
wneuper@59257
   323
    if id_rls rls = rls_ 
wneuper@59257
   324
    then if f = f_ then Ass (m, f') else AssWeak (m ,f')
wneuper@59257
   325
    else NotAss
wneuper@59257
   326
  | assod _ _ (m as Detail_Set_Inst' (_, _, _, rls, f, (f',_))) 
wneuper@59257
   327
      (Const ("Script.Rewrite'_Set'_Inst", _) $ _ $ Free (rls_, _) $ _ $ f_) = 
wneuper@59257
   328
    if id_rls rls = rls_
wneuper@59257
   329
    then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   330
    else NotAss
wneuper@59257
   331
  | assod _ _ (m as Rewrite_Set' (_, _, rls, f, (f', _))) 
wneuper@59257
   332
      (Const ("Script.Rewrite'_Set", _) $ Free (rls_, _) $ _ $ f_) = 
wneuper@59257
   333
    if id_rls rls = rls_
wneuper@59257
   334
    then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   335
    else NotAss
wneuper@59257
   336
  | assod _ _ (m as Detail_Set' (_, _, rls, f, (f', _))) 
wneuper@59257
   337
      (Const ("Script.Rewrite'_Set", _) $ Free (rls_, _) $ _ $ f_) = 
wneuper@59257
   338
    if id_rls rls = rls_
wneuper@59257
   339
    then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   340
    else NotAss
wneuper@59257
   341
  | assod _ _ (m as Calculate' (_, op_, f, (f', _))) stac =
wneuper@59257
   342
    (case stac of
wneuper@59257
   343
	    (Const ("Script.Calculate",_) $ Free (op__,_) $ f_) =>
wneuper@59257
   344
	      if op_ = op__
wneuper@59257
   345
        then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   346
	      else NotAss
wneuper@59257
   347
    | (Const ("Script.Rewrite'_Set'_Inst", _) $ _ $ Free(rls_,_) $_$f_)  =>
wneuper@59257
   348
        let val thy = assoc_thy "Isac";
wneuper@59257
   349
        in
wneuper@59257
   350
          if contains_rule (Calc (assoc_calc' thy op_ |> snd)) (assoc_rls rls_)
wneuper@59257
   351
          then if f = f_ then Ass (m, f') else AssWeak (m, f')
wneuper@59257
   352
          else NotAss
wneuper@59257
   353
        end
wneuper@59257
   354
    | (Const ("Script.Rewrite'_Set",_) $ Free (rls_, _) $ _ $ f_) =>
wneuper@59257
   355
        let val thy = assoc_thy "Isac";
wneuper@59257
   356
        in
wneuper@59257
   357
          if contains_rule (Calc (assoc_calc' thy op_ |> snd)) (assoc_rls rls_)
wneuper@59257
   358
          then if f = f_ then Ass (m,f') else AssWeak (m,f')
wneuper@59257
   359
          else NotAss
wneuper@59257
   360
        end
wneuper@59257
   361
    | _ => NotAss)
wneuper@59257
   362
  | assod _ _ (m as Check_elementwise' (consts, _, (consts_chkd, _)))
wneuper@59257
   363
      (Const ("Script.Check'_elementwise",_) $ consts' $ _) =
wneuper@59257
   364
    if consts = consts'
wneuper@59257
   365
    then Ass (m, consts_chkd)
wneuper@59257
   366
    else NotAss
wneuper@59257
   367
  | assod _ _ (m as Or_to_List' (_, list)) (Const ("Script.Or'_to'_List", _) $ _) = Ass (m, list) 
wneuper@59257
   368
  | assod _ _ (m as Take' term) (Const ("Script.Take", _) $ _) = Ass (m, term)
wneuper@59257
   369
  | assod _ _ (m as Substitute' (ro, erls, subte, f, f')) (Const ("Script.Substitute", _) $ _ $ t) =
wneuper@59257
   370
	  if f = t then Ass (m, f')
wneuper@59257
   371
	  else (*compare | applicable_in (p,p_) pt (m as Substitute sube)*)
wneuper@59257
   372
		  if foldl and_ (true, map contains_Var subte)
wneuper@59257
   373
		  then
wneuper@59257
   374
		    let val t' = subst_atomic (map HOLogic.dest_eq subte (*TODO subte2subst*)) t
wneuper@59257
   375
		    in if t = t' then error "assod: Substitute' not applicable to val of Expr"
wneuper@59257
   376
		       else Ass (Substitute' (ro, erls, subte, t, t'), t')
wneuper@59257
   377
		    end
wneuper@59257
   378
		  else (case rewrite_terms_ (Isac()) ro erls subte t of
neuper@42360
   379
		         SOME (t', _) =>  Ass (Substitute' (ro, erls, subte, t, t'), t')
neuper@42360
   380
		       | NONE => error "assod: Substitute' not applicable to val of Expr")
wneuper@59257
   381
  | assod _ _ (m as Tac_ (thy, _, id, f')) (Const ("Script.Tac",_) $ Free (id', _)) =
wneuper@59257
   382
    if id = id'
wneuper@59257
   383
    then Ass (m, ((Thm.term_of o the o (parse thy)) f'))
wneuper@59257
   384
    else NotAss
neuper@37906
   385
neuper@41990
   386
    (*compare "| stac2tac_ thy (Const ("Script.SubProblem",_)"*)
wneuper@59257
   387
  | assod pt _ (Subproblem' ((domID, pblID, _), _, _, _, _, _))
wneuper@59257
   388
	    (stac as Const ("Script.SubProblem",_) $ (Const ("Product_Type.Pair",_) $
wneuper@59257
   389
		    Free (dI',_) $ (Const ("Product_Type.Pair",_) $ pI' $ mI')) $ ags') =
wneuper@59257
   390
    let 
wneuper@59257
   391
      val dI = ((implode o drop_last(*.."'"*) o Symbol.explode) dI')(*^""*);
wneuper@59257
   392
      val thy = maxthy (assoc_thy dI) (rootthy pt);
wneuper@59257
   393
	    val pI = ((map (de_esc_underscore o free2str)) o isalist2list) pI';
wneuper@59257
   394
	    val mI = ((map (de_esc_underscore o free2str)) o isalist2list) mI';
wneuper@59257
   395
	    val ags = isalist2list ags';
wneuper@59257
   396
	    val (pI, pors, mI) = 
wneuper@59257
   397
	      if mI = ["no_met"] 
wneuper@59257
   398
	      then
wneuper@59257
   399
          let
wneuper@59257
   400
            val pors = (match_ags thy ((#ppc o get_pbt) pI) ags)
wneuper@59257
   401
		          handle ERROR "actual args do not match formal args"
wneuper@59257
   402
			          => (match_ags_msg pI stac ags(*raise exn*);[]);
wneuper@59257
   403
		        val pI' = refine_ori' pors pI;
wneuper@59257
   404
		      in (pI', pors (*refinement over models with diff.prec only*), (hd o #met o get_pbt) pI')
wneuper@59257
   405
          end
wneuper@59257
   406
	      else (pI, (match_ags thy ((#ppc o get_pbt) pI) ags)
wneuper@59257
   407
		      handle ERROR "actual args do not match formal args"
wneuper@59257
   408
		      => (match_ags_msg pI stac ags(*raise exn*); []), mI);
wneuper@59257
   409
      val (fmz_, vals) = oris2fmz_vals pors;
wneuper@59257
   410
	    val {cas, ppc, thy, ...} = get_pbt pI
wneuper@59257
   411
	    val dI = theory2theory' thy (*take dI from _refined_ pbl*)
wneuper@59257
   412
	    val dI = theory2theory' (maxthy (assoc_thy dI) (rootthy pt))
wneuper@59257
   413
	    val ctxt = dI |> Thy_Info.get_theory |> Proof_Context.init_global |> declare_constraints' vals
wneuper@59257
   414
	    val hdl = 
wneuper@59257
   415
        case cas of
wneuper@59257
   416
		      NONE => pblterm dI pI
wneuper@59257
   417
		    | SOME t => subst_atomic ((vars_of_pbl_' ppc) ~~~ vals) t
wneuper@59257
   418
      val f = subpbl (strip_thy dI) pI
wneuper@59257
   419
    in 
wneuper@59257
   420
      if domID = dI andalso pblID = pI
wneuper@59257
   421
      then Ass (Subproblem' ((dI, pI, mI), pors, hdl, fmz_, ctxt, f), f) 
wneuper@59257
   422
      else NotAss
wneuper@59257
   423
    end
wneuper@59257
   424
  | assod _ _ m _ = 
wneuper@59257
   425
    (if (!trace_script) 
wneuper@59257
   426
     then tracing("@@@ the 'tac_' proposed to apply does NOT match the leaf found in the script:\n"
wneuper@59257
   427
		   ^ "@@@ tac_ = " ^ tac_2str m)
wneuper@59257
   428
     else ();
wneuper@59257
   429
    NotAss);
neuper@37906
   430
wneuper@59257
   431
fun tac_2tac (Refine_Tacitly' (pI, _, _, _, _)) = Refine_Tacitly pI
wneuper@59257
   432
  | tac_2tac (Model_Problem' (_, _, _)) = Model_Problem
wneuper@59257
   433
  | tac_2tac (Add_Given' (t, _)) = Add_Given t
wneuper@59257
   434
  | tac_2tac (Add_Find' (t, _)) = Add_Find t
wneuper@59257
   435
  | tac_2tac (Add_Relation' (t, _)) = Add_Relation t
neuper@37906
   436
 
wneuper@59257
   437
  | tac_2tac (Specify_Theory' dI) = Specify_Theory dI
wneuper@59257
   438
  | tac_2tac (Specify_Problem' (dI, _)) = Specify_Problem dI
wneuper@59257
   439
  | tac_2tac (Specify_Method' (dI, _, _)) = Specify_Method dI
neuper@37906
   440
  
wneuper@59253
   441
  | tac_2tac (Rewrite' (_, _, _, _, thm, _, _)) = Rewrite thm
wneuper@59253
   442
  | tac_2tac (Rewrite_Inst' (_, _, _, _, sub, thm, _, _)) = Rewrite_Inst (subst2subs sub, thm)
neuper@37906
   443
wneuper@59257
   444
  | tac_2tac (Rewrite_Set' (_, _, rls, _, _)) = Rewrite_Set (id_rls rls)
wneuper@59257
   445
  | tac_2tac (Detail_Set' (_, _, rls, _, _)) = Detail_Set (id_rls rls)
neuper@37906
   446
wneuper@59257
   447
  | tac_2tac (Rewrite_Set_Inst' (_, _, sub, rls, _, _)) = 
wneuper@59257
   448
    Rewrite_Set_Inst (subst2subs sub,id_rls rls)
wneuper@59257
   449
  | tac_2tac (Detail_Set_Inst' (_, _, sub, rls, _, _)) = 
wneuper@59257
   450
    Detail_Set_Inst (subst2subs sub,id_rls rls)
neuper@37906
   451
wneuper@59257
   452
  | tac_2tac (Calculate' (_, op_, _, _)) = Calculate (op_)
wneuper@59257
   453
  | tac_2tac (Check_elementwise' (_, pred, _)) = Check_elementwise pred
neuper@37906
   454
neuper@37906
   455
  | tac_2tac (Or_to_List' _) = Or_to_List
neuper@37906
   456
  | tac_2tac (Take' term) = Take (term2str term)
wneuper@59257
   457
  | tac_2tac (Substitute' (_, _, subte, _, _)) = Substitute (subte2sube subte) 
wneuper@59257
   458
  | tac_2tac (Tac_ (_, _, id, _)) = Tac id
neuper@37906
   459
neuper@42018
   460
  | tac_2tac (Subproblem' ((domID, pblID, _), _, _, _,_ ,_)) = Subproblem (domID, pblID)
neuper@42018
   461
  | tac_2tac (Check_Postcond' (pblID, _)) = Check_Postcond pblID
neuper@37906
   462
  | tac_2tac Empty_Tac_ = Empty_Tac
wneuper@59257
   463
  | tac_2tac m = error ("tac_2tac: not impl. for "^(tac_2str m));
neuper@37906
   464
wneuper@59257
   465
val idT = Type ("Script.ID", []);
neuper@37938
   466
neuper@37906
   467
fun make_rule thy t =
wneuper@59184
   468
  let val ct = Thm.global_cterm_of thy (Trueprop $ t)
wneuper@59186
   469
  in Thm (term_to_string''' thy (Thm.term_of ct), Thm.make_thm ct) end;
neuper@37906
   470
wneuper@59257
   471
fun rep_tac_ (Rewrite_Inst' (thy', _, _, put, subs, (thmID, _), f, (f', _))) = 
wneuper@59257
   472
    let val fT = type_of f;
wneuper@59257
   473
      val b = if put then @{term True} else @{term False};
wneuper@59257
   474
      val sT = (type_of o fst o hd) subs;
wneuper@59257
   475
      val subs' = list2isalist (HOLogic.mk_prodT (sT, sT)) (map HOLogic.mk_prod subs);
wneuper@59257
   476
      val sT' = type_of subs';
wneuper@59257
   477
      val lhs = Const ("Script.Rewrite'_Inst", [sT', idT, bool, fT] ---> fT) 
wneuper@59257
   478
        $ subs' $ Free (thmID, idT) $ b $ f;
wneuper@59257
   479
    in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs, f'), (lhs, f')) end
wneuper@59257
   480
  | rep_tac_ (Rewrite' (thy', _, _, put, (thmID, _), f, (f', _)))=
wneuper@59257
   481
    let 
wneuper@59257
   482
      val fT = type_of f;
wneuper@59257
   483
      val b = if put then @{term True} else @{term False};
wneuper@59257
   484
      val lhs = Const ("Script.Rewrite", [idT, HOLogic.boolT, fT] ---> fT)
wneuper@59257
   485
        $ Free (thmID, idT) $ b $ f;
wneuper@59257
   486
    in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs, f'), (lhs, f')) end
wneuper@59257
   487
  | rep_tac_ (Rewrite_Set_Inst' (_, _, _, _, _, (f', _))) = (e_rule, (e_term, f'))
wneuper@59257
   488
  | rep_tac_ (Rewrite_Set' (thy', put, rls, f, (f', _))) =
wneuper@59257
   489
    let 
wneuper@59257
   490
      val fT = type_of f;
wneuper@59257
   491
      val b = if put then @{term True} else @{term False};
wneuper@59257
   492
      val lhs = Const ("Script.Rewrite'_Set", [idT, bool, fT] ---> fT) 
wneuper@59257
   493
        $ Free (id_rls rls, idT) $ b $ f;
wneuper@59257
   494
    in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
wneuper@59257
   495
  | rep_tac_ (Calculate' (thy', op_, f, (f', _)))=
wneuper@59257
   496
    let
wneuper@59257
   497
      val fT = type_of f;
wneuper@59257
   498
      val lhs = Const ("Script.Calculate",[idT,fT] ---> fT) $ Free (op_,idT) $ f
wneuper@59257
   499
    in (((make_rule (assoc_thy thy')) o HOLogic.mk_eq) (lhs,f'),(lhs,f')) end
wneuper@59257
   500
  | rep_tac_ (Check_elementwise' (_, _, (t', _))) = (Erule, (e_term, t'))
wneuper@59257
   501
  | rep_tac_ (Subproblem' (_, _, _, _, _, t')) = (Erule, (e_term, t'))
wneuper@59257
   502
  | rep_tac_ (Take' t') = (Erule, (e_term, t'))
wneuper@59257
   503
  | rep_tac_ (Substitute' (_, _, _, t, t')) = (Erule, (t, t'))
wneuper@59257
   504
  | rep_tac_ (Or_to_List' (t, t')) = (Erule, (t, t'))
wneuper@59257
   505
  | rep_tac_ m = error ("rep_tac_: not impl.for " ^ tac_2str m)
neuper@37906
   506
wneuper@59257
   507
fun tac_2res m = (snd o snd o rep_tac_) m;
neuper@37906
   508
neuper@41996
   509
(* handle a leaf at the end of recursive descent:
neuper@42360
   510
   a leaf is either a tactic or an 'expr' in "let v = expr"
neuper@42360
   511
   where "expr" does not contain a tactic.
neuper@42360
   512
   Handling a leaf comprises
neuper@37906
   513
   (1) 'subst_stacexpr' substitute env and complete curried tactic
neuper@37906
   514
   (2) rewrite the leaf by 'srls'
neuper@41996
   515
*)
neuper@37906
   516
fun handle_leaf call thy srls E a v t =
neuper@41996
   517
      (*WN050916 'upd_env_opt' is a blind copy from previous version*)
wneuper@59257
   518
    case subst_stacexpr E a v t of
wneuper@59257
   519
	    (a', STac stac) => (*script-tactic*)
wneuper@59257
   520
	      let val stac' =
wneuper@59257
   521
            eval_listexpr_ (assoc_thy thy) srls (subst_atomic (upd_env_opt E (a,v)) stac)
wneuper@59257
   522
	      in
wneuper@59257
   523
          (if (! trace_script) 
wneuper@59257
   524
	         then tracing ("@@@ "^call^" leaf '"^term2str t^"' ---> STac '"^term2str stac ^"'")
wneuper@59257
   525
	         else ();
wneuper@59257
   526
	         (a', STac stac'))
wneuper@59257
   527
	      end
wneuper@59257
   528
    | (a', Expr lexpr) => (*leaf-expression*)
wneuper@59257
   529
	      let val lexpr' =
wneuper@59257
   530
            eval_listexpr_ (assoc_thy thy) srls (subst_atomic (upd_env_opt E (a,v)) lexpr)
wneuper@59257
   531
	      in
wneuper@59257
   532
          (if (! trace_script) 
wneuper@59257
   533
	         then tracing("@@@ "^call^" leaf '"^term2str t^"' ---> Expr '"^term2str lexpr'^"'")
wneuper@59257
   534
	         else ();
wneuper@59257
   535
	         (a', Expr lexpr')) (*lexpr' is the value of the Expr*)
wneuper@59257
   536
	      end;
neuper@37906
   537
wneuper@59257
   538
(** locate an applicable stac in a script **)
wneuper@59257
   539
datatype assoc = (* ExprVal in the sense of denotational semantics               *)
wneuper@59257
   540
  Assoc of       (* the stac is associated, strongly or weakly                   *)
wneuper@59257
   541
  scrstate *     (* the current; returned for next_tac etc. outside ass*         *)  
wneuper@59257
   542
  (step list)    (* list of steps done until associated stac found;
wneuper@59257
   543
	                  initiated with the data for doing the 1st step,
wneuper@59257
   544
                    thus the head holds these data further on,
wneuper@59257
   545
		                while the tail holds steps finished (incl.scrstate in ptree) *)
wneuper@59257
   546
| NasApp of      (* stac not associated, but applicable, ptree-node generated    *)
neuper@37906
   547
  scrstate * (step list)
wneuper@59257
   548
| NasNap of      (* stac not associated, not applicable, nothing generated;
wneuper@59257
   549
	                  for distinction in Or, for leaving iterations, leaving Seq,
wneuper@59257
   550
		                evaluate scriptexpressions                                   *)
neuper@37906
   551
  term * env;
wneuper@59257
   552
fun assoc2str (Assoc _) = "Assoc"
wneuper@59257
   553
  | assoc2str (NasNap _) = "NasNap"
neuper@37906
   554
  | assoc2str (NasApp _) = "NasApp";
neuper@37906
   555
wneuper@59257
   556
datatype asap = (* arg. of assy _only_ for distinction w.r.t. Or                 *)
wneuper@59257
   557
  Aundef        (* undefined: set only by (topmost) Or                           *)
wneuper@59257
   558
| AssOnly       (* do not execute appl stacs - there could be an associated
wneuper@59257
   559
	                 in parallel Or-branch                                         *)
wneuper@59257
   560
| AssGen;       (* no Ass(Weak) found within Or, thus 
wneuper@59257
   561
                   search for _applicable_ stacs, execute and generate pt        *)
wneuper@59257
   562
(*this constructions doesnt allow arbitrary nesting of Or !!!                    *)
neuper@37906
   563
wneuper@59257
   564
(* assy, ass_up, astep_up scan for locate_gen in a script.
wneuper@59257
   565
   search is clearly separated into (1)-(2):
wneuper@59257
   566
   (1) assy is recursive descent;
wneuper@59257
   567
   (2) ass_up resumes interpretation at a location somewhere in the script;
wneuper@59257
   568
       astep_up does only get to the parentnode of the scriptexpr.
wneuper@59257
   569
   consequence:
wneuper@59257
   570
   * call of (2) means _always_ that in this branch below
wneuper@59257
   571
     there was an appl.stac (Repeat, Or e1, ...) found by the previous step.
wneuper@59257
   572
*)
wneuper@59257
   573
(*WN161112 blanks between list elements left as is until istate is introduced here*)
wneuper@59257
   574
fun assy ya ((E,l,a,v,S,b),ss) (Const ("HOL.Let",_) $ e $ (Abs (id,T,body))) =
wneuper@59257
   575
    (case assy ya ((E , l @ [L, R], a,v,S,b),ss) e of
wneuper@59257
   576
       NasApp ((E',l,a,v,S,_),ss) => 
wneuper@59257
   577
         let
wneuper@59257
   578
           val id' = mk_Free (id, T);
wneuper@59257
   579
           val E' = upd_env E' (id', v);
wneuper@59257
   580
         in assy ya ((E', l @ [R, D], a,v,S,b),ss) body end
wneuper@59257
   581
     | NasNap (v,E) =>
wneuper@59257
   582
         let
wneuper@59257
   583
           val id' = mk_Free (id, T);
wneuper@59257
   584
           val E' = upd_env E (id', v);
wneuper@59257
   585
         in assy ya ((E', l @ [R, D], a,v,S,b),ss) body end
wneuper@59257
   586
     | ay => ay)
wneuper@59257
   587
  | assy (ya as (thy,_,srls,_,_)) ((E,l,_,v,S,b),ss) (Const ("Script.While",_) $ c $ e $ a) =
wneuper@59257
   588
    if eval_true_ thy srls (subst_atomic (upd_env E (a,v)) c) 
wneuper@59257
   589
    then assy ya ((E, l @ [L, R], SOME a,v,S,b),ss)  e
wneuper@59257
   590
    else NasNap (v, E)
wneuper@59257
   591
  | assy (ya as (thy,_,srls,_,_)) ((E,l,a,v,S,b),ss) (Const ("Script.While",_) $ c $ e) =
wneuper@59257
   592
    if eval_true_ thy srls (subst_atomic (upd_env_opt E (a,v)) c) 
wneuper@59257
   593
    then assy ya ((E, l @ [R], a,v,S,b),ss) e
wneuper@59257
   594
    else NasNap (v, E)
wneuper@59257
   595
  | assy (ya as (thy,_,srls,_,_)) ((E,l,a,v,S,b),ss) (Const ("If",_) $ c $ e1 $ e2) =
wneuper@59257
   596
    if eval_true_ thy srls (subst_atomic (upd_env_opt E (a,v)) c) 
wneuper@59257
   597
    then assy ya ((E, l @ [L, R], a,v,S,b),ss) e1
wneuper@59257
   598
    else assy ya ((E, l @ [R], a,v,S,b),ss) e2 
wneuper@59257
   599
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Try",_) $ e $ a) =
wneuper@59257
   600
    (case assy ya ((E, l @ [L, R], SOME a,v,S,b),ss) e of ay => ay) 
wneuper@59257
   601
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Try",_) $ e) =
wneuper@59257
   602
    (case assy ya ((E, l @ [R], a,v,S,b),ss) e of ay => ay)
wneuper@59257
   603
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Seq",_) $e1 $ e2 $ a) =
wneuper@59257
   604
    (case assy ya ((E, l @ [L, L, R], SOME a,v,S,b),ss) e1 of
wneuper@59257
   605
	     NasNap (v, E) => assy ya ((E, l @ [L, R], SOME a,v,S,b),ss) e2
wneuper@59257
   606
     | NasApp ((E,_,_,v,_,_),ss) => assy ya ((E, l @ [L, R], SOME a,v,S,b),ss) e2
wneuper@59257
   607
     | ay => ay)
wneuper@59257
   608
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Seq",_) $e1 $ e2) =
wneuper@59257
   609
    (case assy ya ((E, l @ [L, R], a,v,S,b),ss) e1 of
wneuper@59257
   610
	     NasNap (v, E) => assy ya ((E, l @ [R], a,v,S,b),ss) e2
wneuper@59257
   611
     | NasApp ((E,_,_,v,_,_),ss) => assy ya ((E, l @ [R], a,v,S,b),ss) e2
wneuper@59257
   612
     | ay => ay)
wneuper@59257
   613
  | assy ya ((E,l,_,v,S,b),ss) (Const ("Script.Repeat",_) $ e $ a) =
wneuper@59257
   614
    assy ya ((E,(l @ [L, R]),SOME a,v,S,b),ss) e
wneuper@59257
   615
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Repeat",_) $ e) =
wneuper@59257
   616
    assy ya ((E,(l @ [R]),a,v,S,b),ss) e
wneuper@59257
   617
  | assy (y,x,s,sc,Aundef) ((E,l,_,v,S,b),ss) (Const ("Script.Or",_) $e1 $ e2 $ a) =
wneuper@59257
   618
    (case assy (y,x,s,sc,AssOnly) ((E,(l @ [L, L, R]),SOME a,v,S,b),ss) e1 of
wneuper@59257
   619
	     NasNap (v, E) => 
wneuper@59257
   620
	       (case assy (y,x,s,sc,AssOnly) ((E,(l @ [L, R]),SOME a,v,S,b),ss) e2 of
wneuper@59257
   621
	          NasNap (v, E) => 
wneuper@59257
   622
	            (case assy (y,x,s,sc,AssGen) ((E,(l @ [L, L, R]),SOME a,v,S,b),ss) e1 of
wneuper@59257
   623
	               NasNap (v, E) => 
wneuper@59257
   624
	                 assy (y,x,s,sc,AssGen) ((E, (l @ [L, R]), SOME a,v,S,b),ss) e2
wneuper@59257
   625
	             | ay => ay)
wneuper@59257
   626
	        | ay =>ay)
wneuper@59257
   627
     | NasApp _ => error ("assy: FIXXXME ///must not return NasApp///")
wneuper@59257
   628
     | ay => (ay))
wneuper@59257
   629
  | assy ya ((E,l,a,v,S,b),ss) (Const ("Script.Or",_) $e1 $ e2) =
wneuper@59257
   630
    (case assy ya ((E,(l @ [L, R]),a,v,S,b),ss) e1 of
wneuper@59257
   631
	     NasNap (v, E) => assy ya ((E,(l @ [R]),a,v,S,b),ss) e2
wneuper@59257
   632
     | ay => (ay))
wneuper@59257
   633
    (*here is not a tactical like TRY etc, but a tactic creating a step in calculation*)
wneuper@59257
   634
  | assy (thy',ctxt,sr,d,ap) ((E,l,a,v,S,_), (m,_,pt,(p,p_),c)::ss) t =
wneuper@59257
   635
    (case handle_leaf "locate" thy' sr E a v t of
wneuper@59257
   636
	     (a', Expr _) => 
wneuper@59257
   637
	        (NasNap (eval_listexpr_ (assoc_thy thy') sr
wneuper@59257
   638
		     (subst_atomic (upd_env_opt E (a',v)) t), E))
wneuper@59257
   639
     | (a', STac stac) =>
wneuper@59257
   640
	       let
wneuper@59257
   641
           val p' = 
wneuper@59257
   642
             case p_ of Frm => p 
wneuper@59257
   643
             | Res => lev_on p
wneuper@59257
   644
		         | _ => error ("assy: call by " ^ pos'2str (p,p_));
wneuper@59257
   645
	       in
wneuper@59257
   646
           case assod pt d m stac of
wneuper@59257
   647
	         Ass (m,v') =>
wneuper@59257
   648
	           let val (p'',c',f',pt') =
wneuper@59257
   649
                 generate1 (assoc_thy thy') m (ScrState (E,l,a',v',S,true), ctxt) (p',p_) pt;
wneuper@59257
   650
	           in Assoc ((E,l,a',v',S,true), (m,f',pt',p'',c @ c')::ss) end
wneuper@59257
   651
           | AssWeak (m,v') => 
wneuper@59257
   652
	           let val (p'',c',f',pt') =
wneuper@59257
   653
               generate1 (assoc_thy thy') m (ScrState (E,l,a',v',S,false), ctxt) (p',p_) pt;
wneuper@59257
   654
	           in Assoc ((E,l,a',v',S,false), (m,f',pt',p'',c @ c')::ss) end
wneuper@59257
   655
           | NotAss =>
wneuper@59257
   656
             (case ap of   (*switch for Or: 1st AssOnly, 2nd AssGen*)
wneuper@59257
   657
                AssOnly => (NasNap (v, E))
wneuper@59257
   658
              | _ =>
wneuper@59257
   659
                  (case applicable_in (p,p_) pt (stac2tac pt (assoc_thy thy') stac) of
wneuper@59257
   660
		                 Appl m' =>
wneuper@59257
   661
		                   let
wneuper@59257
   662
                         val is = (E,l,a',tac_2res m',S,false(*FIXXXME.WN0?*))
wneuper@59257
   663
		                     val (p'',c',f',pt') =
wneuper@59257
   664
		                       generate1 (assoc_thy thy') m' (ScrState is, ctxt) (p',p_) pt;
wneuper@59257
   665
		                   in NasApp (is,(m,f',pt',p'',c @ c')::ss) end
wneuper@59257
   666
		               | Notappl _ => (NasNap (v, E))
wneuper@59257
   667
		              )
wneuper@59257
   668
		         )
wneuper@59257
   669
         end)
wneuper@59257
   670
  | assy _ (_, []) t = error ("assy: uncovered fun-def with " ^ term2str t);
neuper@37906
   671
wneuper@59257
   672
(*WN161112 blanks between list elements left as is until istate is introduced here*)
wneuper@59257
   673
fun ass_up (ys as (y,ctxt,s,Prog sc,d)) ((E,l,a,v,S,b),ss) (Const ("HOL.Let",_) $ _) =
wneuper@59257
   674
    let 
wneuper@59257
   675
	    val l = drop_last l; (*comes from e, goes to Abs*)
wneuper@59257
   676
      val (i, T, body) =
wneuper@59257
   677
        (case go l sc of
wneuper@59257
   678
           Const ("HOL.Let",_) $ _ $ (Abs (i, T, body)) => (i, T, body)
wneuper@59257
   679
         | t => error ("ass_up..HOL.Let $ _ with " ^ term2str t))
wneuper@59257
   680
      val i = mk_Free (i, T);
wneuper@59257
   681
      val E = upd_env E (i, v);
wneuper@59257
   682
    in case assy (y,ctxt,s,d,Aundef) ((E, l @ [R, D], a,v,S,b),ss) body of
wneuper@59257
   683
	       Assoc iss => Assoc iss
wneuper@59257
   684
	     | NasApp iss => astep_up ys iss 
wneuper@59257
   685
	     | NasNap (v, E) => astep_up ys ((E,l,a,v,S,b),ss) 
wneuper@59257
   686
	  end
wneuper@59257
   687
  | ass_up ys iss (Abs (_,_,_)) = astep_up ys iss (*TODO 5.9.00: env ?*)
wneuper@59257
   688
  | ass_up ys iss (Const ("HOL.Let",_) $ _ $ (Abs _)) = astep_up ys iss (*TODO 5.9.00: env ?*)
wneuper@59257
   689
  | ass_up ysa iss (Const ("Script.Seq",_) $ _ $ _ $ _) =
wneuper@59257
   690
    astep_up ysa iss (*all has been done in (*2*) below*)
wneuper@59257
   691
  | ass_up ysa iss (Const ("Script.Seq",_) $ _ $ _) =
wneuper@59257
   692
    astep_up ysa iss (*2*: comes from e2*)
neuper@37906
   693
wneuper@59257
   694
  | ass_up (ysa as (y,ctxt,s,Prog sc,d)) ((E,l,a,v,S,b),ss)
wneuper@59257
   695
	  (Const ("Script.Seq",_) $ _ ) = (*2*: comes from e1, goes to e2*)
wneuper@59257
   696
     let 
wneuper@59257
   697
       val up = drop_last l;
wneuper@59257
   698
     val e2 =
wneuper@59257
   699
       (case go up sc of
wneuper@59257
   700
          Const ("Script.Seq",_) $ _ $ e2 => e2
wneuper@59257
   701
        | t => error ("ass_up..Script.Seq $ _ with " ^ term2str t))
wneuper@59257
   702
     in case assy (y,ctxt,s,d,Aundef) ((E, up @ [R], a,v,S,b),ss) e2 of
wneuper@59257
   703
         NasNap (v,E) => astep_up ysa ((E,up,a,v,S,b),ss)
wneuper@59257
   704
       | NasApp iss => astep_up ysa iss
wneuper@59257
   705
       | ay => ay 
wneuper@59257
   706
     end
wneuper@59257
   707
  | ass_up ysa iss (Const ("Script.Try",_) $ _ $ _) = astep_up ysa iss
wneuper@59257
   708
  | ass_up ysa iss (Const ("Script.Try",_) $ _) = astep_up ysa iss
neuper@42282
   709
  | ass_up (ys as (y,ctxt,s,_,d)) ((E,l,_,v,S,b),ss)
neuper@37906
   710
	   (*(Const ("Script.While",_) $ c $ e $ a) = WN050930 blind fix*)
wneuper@59257
   711
	    (t as Const ("Script.While",_) $ c $ e $ a) =
wneuper@59257
   712
    if eval_true_ y s (subst_atomic (upd_env E (a,v)) c)
wneuper@59257
   713
    then case assy (y,ctxt,s,d,Aundef) ((E, l @ [L, R], SOME a,v,S,b),ss) e of 
wneuper@59257
   714
      NasNap (v,E') => astep_up ys ((E',l, SOME a,v,S,b),ss)
wneuper@59257
   715
    | NasApp ((E',l,a,v,S,b),ss) =>
wneuper@59257
   716
      ass_up ys ((E',l,a,v,S,b),ss) t (*WN050930 't' was not assigned*)
wneuper@59257
   717
    | ay => ay
neuper@37926
   718
    else astep_up ys ((E,l, SOME a,v,S,b),ss)
neuper@42282
   719
  | ass_up (ys as (y,ctxt,s,_,d)) ((E,l,a,v,S,b),ss)
neuper@37906
   720
	   (*(Const ("Script.While",_) $ c $ e) = WN050930 blind fix*)
wneuper@59257
   721
	     (t as Const ("Script.While",_) $ c $ e) =
neuper@37906
   722
    if eval_true_ y s (subst_atomic (upd_env_opt E (a,v)) c)
wneuper@59257
   723
    then case assy (y,ctxt,s,d,Aundef) ((E, l @ [R], a,v,S,b),ss) e of 
neuper@37906
   724
       NasNap (v,E') => astep_up ys ((E',l, a,v,S,b),ss)
neuper@37906
   725
     | NasApp ((E',l,a,v,S,b),ss) =>
neuper@37906
   726
       ass_up ys ((E',l,a,v,S,b),ss) t (*WN050930 't' was not assigned*)
wneuper@59257
   727
     | ay => ay
wneuper@59257
   728
    else astep_up ys ((E,l, a,v,S,b),ss)
wneuper@59257
   729
  | ass_up y iss (Const ("If",_) $ _ $ _ $ _) = astep_up y iss
wneuper@59257
   730
  | ass_up (ys as (y,ctxt,s,_,d)) ((E,l,_,v,S,b),ss)
wneuper@59257
   731
	    (t as Const ("Script.Repeat",_) $ e $ a) =
wneuper@59257
   732
    (case assy (y,ctxt,s,d, Aundef) ((E, (l @ [L, R]), SOME a,v,S,b),ss) e of 
wneuper@59257
   733
      NasNap (v,E') => astep_up ys ((E',l, SOME a,v,S,b),ss)
wneuper@59257
   734
    | NasApp ((E',l,a,v,S,b),ss) =>
wneuper@59257
   735
      ass_up ys ((E',l,a,v,S,b),ss) t
wneuper@59257
   736
    | ay => ay)
wneuper@59257
   737
  | ass_up (ys as (y,ctxt,s,_,d)) ((E,l,a,v,S,b),ss)
wneuper@59257
   738
	    (t as Const ("Script.Repeat",_) $ e) =
wneuper@59257
   739
    (case assy (y,ctxt,s,d,Aundef) ((E, (l @ [R]), a,v,S,b),ss) e of 
wneuper@59257
   740
       NasNap (v', E') => astep_up ys ((E',l,a,v',S,b),ss)
wneuper@59257
   741
     | NasApp ((E',l,a,v',S,_),ss) => ass_up ys ((E',l,a,v',S,b),ss) t
neuper@37906
   742
     | ay => ay)
neuper@37906
   743
  | ass_up y iss (Const ("Script.Or",_) $ _ $ _ $ _) = astep_up y iss
neuper@37906
   744
  | ass_up y iss (Const ("Script.Or",_) $ _ $ _) = astep_up y iss
neuper@37906
   745
  | ass_up y ((E,l,a,v,S,b),ss) (Const ("Script.Or",_) $ _ ) = 
neuper@37906
   746
    astep_up y ((E, (drop_last l), a,v,S,b),ss)
wneuper@59257
   747
  | ass_up _ _ t =
wneuper@59257
   748
    error ("ass_up not impl for t= " ^ term2str t)
neuper@48763
   749
and astep_up (ys as (_,_,_,Prog sc,_)) ((E,l,a,v,S,b),ss) =
neuper@37906
   750
  if 1 < length l
wneuper@59257
   751
  then 
wneuper@59257
   752
    let val up = drop_last l;
wneuper@59257
   753
    in ass_up ys ((E,up,a,v,S,b),ss) (go up sc) end
neuper@37906
   754
  else (NasNap (v, E))
wneuper@59257
   755
  | astep_up _ ((_,l,_,_,_,_),_) = error ("astep_up: uncovered fun-def with " ^ loc_2str l)
neuper@37906
   756
neuper@37906
   757
(*check if there are tacs for rewriting only*)
neuper@37906
   758
fun rew_only ([]:step list) = true
neuper@37906
   759
  | rew_only (((Rewrite' _          ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   760
  | rew_only (((Rewrite_Inst' _     ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   761
  | rew_only (((Rewrite_Set' _      ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   762
  | rew_only (((Rewrite_Set_Inst' _ ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   763
  | rew_only (((Calculate' _        ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   764
  | rew_only (((Begin_Trans' _      ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   765
  | rew_only (((End_Trans' _        ,_,_,_,_))::ss) = rew_only ss
neuper@37906
   766
  | rew_only _ = false; 
neuper@37906
   767
neuper@37906
   768
datatype locate =
wneuper@59257
   769
  Steps of istate (* producing hd of step list (which was latest)
wneuper@59257
   770
	                   for next_tac, for reporting Safe|Unsafe to DG  *)
wneuper@59257
   771
	   * step       (* (scrstate producing this step is in ptree !)   *) 
wneuper@59257
   772
		 list         (* locate_gen may produce intermediate steps      *)
wneuper@59257
   773
| NotLocatable;   (* no (m Ass m') or (m AssWeak m') found          *)
neuper@37906
   774
neuper@37906
   775
(* locate_gen tries to locate an input tac m in the script. 
neuper@37906
   776
   pursuing this goal the script is executed until an (m' equiv m) is found,
neuper@37906
   777
   or the end of the script
neuper@37906
   778
args
neuper@37906
   779
   m   : input by the user, already checked by applicable_in,
neuper@37906
   780
         (to be searched within Or; and _not_ an m doing the step on ptree !)
neuper@37906
   781
   p,pt: (incl ets) at the time of input
neuper@37906
   782
   scr : the script
neuper@37906
   783
   d   : canonical simplifier for locating Take, Substitute, Subproblems etc.
neuper@37906
   784
   ets : ets at the time of input
neuper@37906
   785
   l   : the location (in scr) of the stac which generated the current formula
neuper@37906
   786
returns
neuper@37906
   787
   Steps: pt,p (incl. ets) with m done
neuper@37906
   788
          pos' list of proofobjs cut (from generate)
neuper@37906
   789
          safe: implied from last proofobj
neuper@37906
   790
	  ets:
neuper@37906
   791
   ///ToDo : ets contains a list of tacs to be done before m can be done
neuper@37906
   792
          NOT IMPL. -- "error: do other step before"
neuper@37906
   793
   NotLocatable: thus generate_hard
neuper@37906
   794
*)
wneuper@59257
   795
(*WN161112 blanks between list elements left as is until istate is introduced here*)
wneuper@59257
   796
fun locate_gen (thy', _) (Rewrite' (_, ro, er, pa, thm, f, _)) (pt, p) 
wneuper@59257
   797
	    (Rfuns {locate_rule=lo,...}, _) (RrlsState (_,f'',rss,rts), _) = 
wneuper@59257
   798
    (case lo rss f (Thm thm) of
wneuper@59257
   799
	    [] => NotLocatable
wneuper@59257
   800
    | rts' => Steps (rts2steps [] ((pt,p),(f,f'',rss,rts),(thy',ro,er,pa)) rts'))
neuper@42282
   801
  | locate_gen (thy',srls) (m:tac_) ((pt,p):ptree * pos') 
wneuper@59257
   802
	    (scr as Prog (_ $ body),d) (ScrState (E,l,a,v,S,b), ctxt)  = 
wneuper@59257
   803
    let val thy = assoc_thy thy';
wneuper@59257
   804
    in case if l = [] orelse (
wneuper@59257
   805
		       (*init.in solve..Apply_Method...*)(last_elem o fst) p = 0 andalso snd p = Res)
wneuper@59257
   806
	       then (assy (thy',ctxt,srls,d,Aundef) ((E,[R],a,v,S,b), [(m,EmptyMout,pt,p,[])]) body)
wneuper@59257
   807
	       else (astep_up (thy',ctxt,srls,scr,d) ((E,l,a,v,S,b), [(m,EmptyMout,pt,p,[])]) ) of
wneuper@59257
   808
	    Assoc ((is as (_,_,_,_,_,strong_ass), ss as (_ :: _))) =>
wneuper@59257
   809
	      (if strong_ass
wneuper@59257
   810
         then (Steps (ScrState is, ss))
wneuper@59257
   811
	       else
wneuper@59257
   812
           if rew_only ss (*andalso 'not strong_ass'= associated weakly*)
wneuper@59257
   813
	         then
wneuper@59257
   814
             let
wneuper@59257
   815
               val (po,p_) = p
wneuper@59257
   816
               val po' = case p_ of Frm => po | Res => lev_on po | _ => error ("locate_gen " ^ pos_2str p_)
wneuper@59257
   817
               val (p'',c'',f'',pt'') = generate1 thy m (ScrState is, ctxt) (po',p_) pt
wneuper@59257
   818
	           in Steps (ScrState is, [(m, f'',pt'',p'',c'')]) end
wneuper@59257
   819
	         else Steps (ScrState is, ss))
wneuper@59257
   820
	  
wneuper@59257
   821
    | NasApp _ => NotLocatable
wneuper@59257
   822
    | err => error ("not-found-in-script: NotLocatable from " ^ PolyML.makestring err)
wneuper@59257
   823
    end
bonzai@41951
   824
  | locate_gen _ m _ (sc,_) (is, _) = 
wneuper@59257
   825
    error ("locate_gen: wrong arguments,\n tac= " ^ tac_2str m ^ ",\n " ^
wneuper@59257
   826
      "scr= " ^ scr2str sc ^ ",\n istate= " ^ istate2str is);
neuper@37906
   827
neuper@37906
   828
(** find the next stactic in a script **)
neuper@37906
   829
neuper@37906
   830
(*appy, nxt_up, nstep_up scanning for next_tac.
neuper@37906
   831
  search is clearly separated into (1)-(2):
neuper@37906
   832
  (1) appy is recursive descent;
neuper@37906
   833
  (2) nxt_up resumes interpretation at a location somewhere in the script;
neuper@37906
   834
      nstep_up does only get to the parentnode of the scriptexpr.
neuper@37906
   835
  consequence:
neuper@37906
   836
  * call of (2) means _always_ that in this branch below
neuper@37906
   837
    there was an applicable stac (Repeat, Or e1, ...)
neuper@37906
   838
*)
wneuper@59257
   839
datatype appy =  (* ExprVal in the sense of denotational semantics  *)
wneuper@59257
   840
    Appy of      (* applicable stac found, search stalled           *)
wneuper@59257
   841
    tac_ *       (* tac_ associated (fun assod) with stac           *)
wneuper@59257
   842
    scrstate     (* after determination of stac WN.18.8.03          *)
wneuper@59257
   843
  | Napp of      (* stac found was not applicable; 
wneuper@59257
   844
	                  this mode may become Skip in Repeat, Try and Or *)
wneuper@59257
   845
    env (*stack*)(* popped while nxt_up                             *)
wneuper@59257
   846
  | Skip of      (* for restart after Appy, for leaving iterations,
wneuper@59257
   847
	                  for passing the value of scriptexpressions,
wneuper@59257
   848
		                and for finishing the script successfully       *)
wneuper@59257
   849
    term * env (*stack*);
neuper@37906
   850
wneuper@59257
   851
datatype appy_ = (* as argument in nxt_up, nstep_up, from appy               *)
wneuper@59257
   852
(*Appy              is only (final) returnvalue, not argument during search  *)
wneuper@59257
   853
  Napp_          (* ev. detects 'script is not appropriate for this example' *)
wneuper@59257
   854
| Skip_;         (* detects 'script successfully finished'
wneuper@59257
   855
		                also used as init-value for resuming; this works,
wneuper@59257
   856
	                  because 'nxt_up Or e1' treats as Appy                    *)
neuper@37906
   857
wneuper@59257
   858
fun appy thy ptp E l (Const ("HOL.Let",_) $ e $ (Abs (i,T,b))) a v =
wneuper@59257
   859
    (case appy thy ptp E (l @ [L, R]) e a v of
wneuper@59257
   860
      Skip (res, E) => 
wneuper@59257
   861
        let val E' = upd_env E (Free (i,T), res);
wneuper@59257
   862
        in appy thy ptp E' (l @ [R, D]) b a v end
wneuper@59257
   863
    | ay => ay)
wneuper@59257
   864
  | appy (thy as (th,sr)) ptp E l (Const ("Script.While"(*1*),_) $ c $ e $ a) _ v =
wneuper@59257
   865
    (if eval_true_ th sr (subst_atomic (upd_env E (a,v)) c)
wneuper@59257
   866
     then appy thy ptp E (l @ [L, R]) e (SOME a) v
wneuper@59257
   867
     else Skip (v, E))
wneuper@59257
   868
  | appy (thy as (th,sr)) ptp E l (Const ("Script.While"(*2*),_) $ c $ e) a v =
wneuper@59257
   869
    (if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c)
wneuper@59257
   870
     then appy thy ptp E (l @ [R]) e a v
wneuper@59257
   871
     else Skip (v, E))
wneuper@59257
   872
  | appy (thy as (th,sr)) ptp E l (Const ("If",_) $ c $ e1 $ e2) a v =
wneuper@59257
   873
    (if eval_true_ th sr (subst_atomic (upd_env_opt E (a,v)) c)
wneuper@59257
   874
     then appy thy ptp E (l @ [L, R]) e1 a v
wneuper@59257
   875
     else appy thy ptp E (l @ [R]) e2 a v)
neuper@42007
   876
  | appy thy ptp E l (Const ("Script.Repeat"(*1*),_) $ e $ a) _ v = 
wneuper@59257
   877
    appy thy ptp E (l @ [L, R]) e (SOME a) v
wneuper@59257
   878
  | appy thy ptp E l (Const ("Script.Repeat"(*2*),_) $ e) a v = appy thy ptp E (l @ [R]) e a v
wneuper@59257
   879
  | appy thy ptp E l (Const ("Script.Try",_) $ e $ a) _ v =
wneuper@59257
   880
    (case appy thy ptp E (l @ [L, R]) e (SOME a) v of
wneuper@59257
   881
      Napp E => (Skip (v, E))
wneuper@59257
   882
    | ay => ay)
wneuper@59257
   883
  | appy thy ptp E l(Const ("Script.Try",_) $ e) a v =
wneuper@59257
   884
    (case appy thy ptp E (l @ [R]) e a v of
wneuper@59257
   885
      Napp E => (Skip (v, E))
wneuper@59257
   886
    | ay => ay)
neuper@42007
   887
  | appy thy ptp E l (Const ("Script.Or"(*1*),_) $e1 $ e2 $ a) _ v =
wneuper@59257
   888
    (case appy thy ptp E (l @ [L, L, R]) e1 (SOME a) v of
wneuper@59257
   889
	    Appy lme => Appy lme
wneuper@59257
   890
    | _ => appy thy ptp E (*env*) (l @ [L, R]) e2 (SOME a) v)
neuper@42007
   891
  | appy thy ptp E l (Const ("Script.Or"(*2*),_) $e1 $ e2) a v =
wneuper@59257
   892
    (case appy thy ptp E (l @ [L, R]) e1 a v of
wneuper@59257
   893
	    Appy lme => Appy lme
wneuper@59257
   894
    | _ => appy thy ptp E (l @ [R]) e2 a v)
neuper@42007
   895
  | appy thy ptp E l (Const ("Script.Seq"(*1*),_) $ e1 $ e2 $ a) _ v =
wneuper@59257
   896
    (case appy thy ptp E (l @ [L, L, R]) e1 (SOME a) v of
wneuper@59257
   897
	    Skip (v,E) => appy thy ptp E (l @ [L, R]) e2 (SOME a) v
wneuper@59257
   898
    | ay => ay)
neuper@42007
   899
  | appy thy ptp E l (Const ("Script.Seq",_) $ e1 $ e2) a v =
wneuper@59257
   900
    (case appy thy ptp E (l @ [L,R]) e1 a v of
wneuper@59257
   901
	    Skip (v,E) => appy thy ptp E (l @ [R]) e2 a v
wneuper@59257
   902
    | ay => ay)
neuper@42007
   903
  (* a leaf has been found *)   
wneuper@59257
   904
  | appy ((th,sr)) (pt, p) E l t a v =
wneuper@59257
   905
    case handle_leaf "next  " th sr E a v t of
wneuper@59257
   906
	    (_, Expr s) => Skip (s, E)
wneuper@59257
   907
    | (a', STac stac) =>
wneuper@59257
   908
	    let val (m,m') = stac2tac_ pt (assoc_thy th) stac
wneuper@59257
   909
      in case m of 
wneuper@59257
   910
	      Subproblem _ => Appy (m', (E,l,a',tac_2res m',Sundef,false))
wneuper@59257
   911
	    | _ =>
wneuper@59257
   912
        (case applicable_in p pt m of
wneuper@59257
   913
		       Appl m' => (Appy (m', (E,l,a',tac_2res m',Sundef,false)))
wneuper@59257
   914
		     | _ => Napp E)
wneuper@59257
   915
	    end
wneuper@59257
   916
(*GOON*)
wneuper@59257
   917
fun nxt_up thy ptp (scr as (Prog sc)) E l ay (Const ("HOL.Let", _) $ _) a v = (*comes from let=...*)
neuper@37906
   918
    if ay = Napp_
neuper@37906
   919
    then nstep_up thy ptp scr E (drop_last l) Napp_ a v
neuper@37906
   920
    else (*Skip_*)
wneuper@59257
   921
	    let
wneuper@59257
   922
        val up = drop_last l
wneuper@59257
   923
        val (i, T, body) =
wneuper@59257
   924
          (case go up sc of
wneuper@59257
   925
             Const ("HOL.Let",_) $ _ $ (Abs aa) => aa
wneuper@59257
   926
           | t => error ("nxt_up..HOL.Let $ _ with " ^ term2str t))
wneuper@59257
   927
        val i = mk_Free (i, T)
wneuper@59257
   928
        val E = upd_env E (i, v)
wneuper@59257
   929
      in
wneuper@59257
   930
        case appy thy ptp E (up @ [R,D]) body a v  of
wneuper@59257
   931
	        Appy lre => Appy lre
wneuper@59257
   932
	      | Napp E => nstep_up thy ptp scr E up Napp_ a v
wneuper@59257
   933
	      | Skip (v,E) => nstep_up thy ptp scr E up Skip_ a v
wneuper@59257
   934
	    end
wneuper@59257
   935
  | nxt_up thy ptp scr E l ay (Abs _) a v =  nstep_up thy ptp scr E l ay a v
wneuper@59257
   936
  | nxt_up thy ptp scr E l ay (Const ("HOL.Let",_) $ _ $ (Abs _)) a v =
wneuper@59257
   937
    nstep_up thy ptp scr E l ay a v
wneuper@59257
   938
  (*no appy_: never causes Napp -> Helpless*)
wneuper@59257
   939
  | nxt_up (thy as (th, sr)) ptp scr E l _ (Const ("Script.While"(*1*), _) $ c $ e $ _) a v = 
wneuper@59257
   940
    if eval_true_ th sr (subst_atomic (upd_env_opt E (a, v)) c) 
wneuper@59257
   941
    then case appy thy ptp E (l @ [L,R]) e a v of
wneuper@59257
   942
	     Appy lr => Appy lr
wneuper@59257
   943
	  | Napp E => nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   944
	  | Skip (v,E) => nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   945
    else nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   946
  (*no appy_: never causes Napp - Helpless*)
wneuper@59257
   947
  | nxt_up (thy as (th, sr)) ptp scr E l _ (Const ("Script.While"(*2*), _) $ c $ e) a v = 
wneuper@59257
   948
    if eval_true_ th sr (subst_atomic (upd_env_opt E (a, v)) c) 
wneuper@59257
   949
    then case appy thy ptp E (l @ [R]) e a v of
neuper@37906
   950
	    Appy lr => Appy lr
wneuper@59257
   951
	  | Napp E => nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   952
	  | Skip (v,E) => nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   953
    else nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   954
  | nxt_up thy ptp scr E l ay (Const ("If", _) $ _ $ _ $ _) a v = nstep_up thy ptp scr E l ay a v
wneuper@59257
   955
  | nxt_up thy ptp scr E l _ (*no appy_: there was already a stac below*)
wneuper@59257
   956
      (Const ("Script.Repeat"(*1*), _) $ e $ _) a v =
wneuper@59257
   957
    (case appy thy ptp (*upd_env*) E (*a,v)*) ((l @ [L, R]):loc_) e a v  of
wneuper@59257
   958
      Appy lr => Appy lr
wneuper@59257
   959
    | Napp E =>  nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   960
    | Skip (v,E) =>  nstep_up thy ptp scr E l Skip_ a v)
wneuper@59257
   961
  | nxt_up thy ptp scr E l _ (*no appy_: there was already a stac below*)
wneuper@59257
   962
      (Const ("Script.Repeat"(*2*), _) $ e) a v =
wneuper@59257
   963
    (case appy thy ptp (*upd_env*) E (*a,v)*) (l @ [R]) e a v  of
wneuper@59257
   964
      Appy lr => Appy lr
wneuper@59257
   965
    | Napp E => nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   966
    | Skip (v,E) => nstep_up thy ptp scr E l Skip_ a v)
wneuper@59257
   967
  | nxt_up thy ptp scr E l _ (Const ("Script.Try",_) $ _ $ _) a v = (*makes Napp to Skip*)
wneuper@59257
   968
    nstep_up thy ptp scr E l Skip_ a v
neuper@37906
   969
wneuper@59257
   970
  | nxt_up thy ptp scr E l _ (Const ("Script.Try"(*2*), _) $ _) a v = (*makes Napp to Skip*)
wneuper@59257
   971
    nstep_up thy ptp scr E l Skip_ a v
wneuper@59257
   972
  | nxt_up thy ptp scr E l ay (Const ("Script.Or",_) $ _ $ _ $ _) a v =
wneuper@59257
   973
    nstep_up thy ptp scr E l ay a v
wneuper@59257
   974
  | nxt_up thy ptp scr E l ay (Const ("Script.Or",_) $ _ $ _) a v = nstep_up thy ptp scr E l ay a v
wneuper@59257
   975
  | nxt_up thy ptp scr E l ay (Const ("Script.Or",_) $ _ ) a v = 
wneuper@59257
   976
    nstep_up thy ptp scr E (drop_last l) ay a v
wneuper@59257
   977
  | nxt_up thy ptp scr E l ay (Const ("Script.Seq"(*1*),_) $ _ $ _ $ _) a v =
wneuper@59257
   978
    (*all has been done in (*2*) below*) nstep_up thy ptp scr E l ay a v
wneuper@59257
   979
  | nxt_up thy ptp scr E l ay (Const ("Script.Seq"(*2*),_) $ _ $ _) a v = (*comes from e2*)
wneuper@59257
   980
    nstep_up thy ptp scr E l ay a v
wneuper@59257
   981
  | nxt_up thy ptp (scr as Prog sc) E l ay (Const ("Script.Seq",_) $ _) a v = (*comes from e1*)
wneuper@59257
   982
    if ay = Napp_
wneuper@59257
   983
    then nstep_up thy ptp scr E (drop_last l) Napp_ a v
wneuper@59257
   984
    else (*Skip_*)
wneuper@59257
   985
      let val up = drop_last l;
wneuper@59257
   986
          val e2 =
wneuper@59257
   987
            (case go up sc of
wneuper@59257
   988
               Const ("Script.Seq"(*2*), _) $ _ $ e2 => e2
wneuper@59257
   989
             | t => error ("nxt_up..Script.Seq $ _ with " ^ term2str t))
wneuper@59257
   990
      in case appy thy ptp E (up @ [R]) e2 a v  of
wneuper@59257
   991
        Appy lr => Appy lr
wneuper@59257
   992
      | Napp E => nstep_up thy ptp scr E up Napp_ a v
wneuper@59257
   993
      | Skip (v,E) => nstep_up thy ptp scr E up Skip_ a v end
wneuper@59257
   994
  | nxt_up _ _ _ _ _ _ t _ _ = error ("nxt_up not impl for " ^ term2str t)
neuper@48763
   995
and nstep_up thy ptp (Prog sc) E l ay a v = 
wneuper@59257
   996
    if 1 < length l
wneuper@59257
   997
    then 
wneuper@59257
   998
      let val up = drop_last l; 
wneuper@59257
   999
      in (nxt_up thy ptp (Prog sc) E up ay (go up sc) a v ) end
wneuper@59257
  1000
    else (*interpreted to end*)
wneuper@59257
  1001
      if ay = Skip_ then Skip (v, E) else Napp E 
wneuper@59257
  1002
  | nstep_up _ _ _ _ l _ _ _ = error ("nstep_up: uncovered fun-def at " ^ loc_2str l)
neuper@37906
  1003
neuper@37906
  1004
(* decide for the next applicable stac in the script;
neuper@37906
  1005
   returns (stactic, value) - the value in case the script is finished 
neuper@37906
  1006
   12.8.02:         ~~~~~ and no assumptions ??? FIXME ???
neuper@37906
  1007
   20.8.02: must return p in case of finished, because the next script
neuper@37906
  1008
            consulted need not be the calling script:
neuper@37906
  1009
            in case of detail ie. _inserted_ PrfObjs, the next stac
neuper@37906
  1010
            has to searched in a script with PblObj.status<>Complete !
neuper@37906
  1011
            (.. not true for other details ..PrfObj ??????????????????
neuper@37906
  1012
   20.8.02: do NOT return safe (is only changed in locate !!!)
neuper@37906
  1013
*)
wneuper@59257
  1014
fun next_tac (thy,_) _ (Rfuns {next_rule, ...}) (RrlsState(f, f', rss, _), ctxt) =
neuper@42394
  1015
    if f = f'
neuper@42394
  1016
    then (End_Detail' (f',[])(*8.6.03*), (Uistate, ctxt), 
neuper@42394
  1017
    	(f', Sundef(*FIXME is no value of next_tac! vor 8.6.03*)))  (*finished*)
neuper@42394
  1018
    else
neuper@42394
  1019
      (case next_rule rss f of
wneuper@59257
  1020
    	  NONE => (Empty_Tac_, (Uistate, ctxt), (e_term, Sundef))   (*helpless*)
wneuper@59257
  1021
    	| SOME (Thm thm'')(*8.6.03: muss auch f' liefern ?!!*) => 
wneuper@59257
  1022
    	    (Rewrite' (thy, "e_rew_ord", e_rls, false, thm'', f, (e_term, [(*!?!8.6.03*)])),
wneuper@59257
  1023
  	         (Uistate, ctxt), (e_term, Sundef)))                  (*next stac*)
wneuper@59257
  1024
  | next_tac thy (ptp as (pt, (p, _)):ptree * pos') (sc as Prog (_ $ body)) 
wneuper@59257
  1025
	    (ScrState (E,l,a,v,s,_), ctxt) =
neuper@42394
  1026
    (case if l = [] then appy thy ptp E [R] body NONE v
neuper@42394
  1027
          else nstep_up thy ptp sc E l Skip_ a v of
neuper@42394
  1028
       Skip (v, _) =>                                              (*finished*)
neuper@42394
  1029
         (case par_pbl_det pt p of
neuper@42394
  1030
	          (true, p', _) => 
neuper@42394
  1031
	             let
neuper@42394
  1032
	               val (_,pblID,_) = get_obj g_spec pt p';
neuper@42394
  1033
	              in (Check_Postcond' (pblID, (v, [(*assigned in next step*)])), 
neuper@42394
  1034
	                   (e_istate, ctxt), (v,s)) 
neuper@42394
  1035
                end
wneuper@59257
  1036
	        | _ => (End_Detail' (e_term,[])(*8.6.03*), (e_istate, ctxt), (v,s)))
neuper@42394
  1037
     | Napp _ => (Empty_Tac_, (e_istate, ctxt), (e_term, Sundef))   (*helpless*)
neuper@42394
  1038
     | Appy (m', scrst as (_,_,_,v,_,_)) => (m', (ScrState scrst, ctxt), (v, Sundef))) (*next stac*)
neuper@41972
  1039
  | next_tac _ _ _ (is, _) = error ("next_tac: not impl for " ^ (istate2str is));
neuper@37906
  1040
neuper@37906
  1041
(*.create the initial interpreter state from the items of the guard.*)
wneuper@59257
  1042
local
wneuper@59240
  1043
val errmsg = "ERROR: found no actual arguments for prog. of "
wneuper@59257
  1044
fun msg_miss (sc, metID, formals, actuals) =
wneuper@59257
  1045
  "ERROR in creating the environment for '" ^ id_of_scr sc ^ 
wneuper@59257
  1046
	"' from \nthe items of the guard of " ^ metID2str metID ^ ",\n" ^
wneuper@59257
  1047
	"formal arg(s), from the script, miss actual arg(s), from the guards env:\n" ^
wneuper@59257
  1048
	(string_of_int o length) formals ^ " formals: " ^ terms2str formals ^ "\n" ^
wneuper@59257
  1049
	(string_of_int o length) actuals ^ " actuals: " ^ terms2str actuals
wneuper@59257
  1050
fun msg_type (sc, metID, a, f, formals, actuals) =
wneuper@59257
  1051
  "ERROR in creating the environment for '" ^
wneuper@59257
  1052
	id_of_scr sc ^ "' from \nthe items of the guard of " ^
wneuper@59257
  1053
	metID2str metID ^ ",\n" ^
wneuper@59257
  1054
	"different types of formal arg, from the script, " ^
wneuper@59257
  1055
	"and actual arg, from the guards env:'\n" ^
wneuper@59257
  1056
	"formal: '" ^ term2str a ^ "::" ^ (type2str o type_of) a ^ "'\n" ^
wneuper@59257
  1057
	"actual: '" ^ term2str f ^ "::" ^ (type2str o type_of) f ^ "'\n" ^
wneuper@59257
  1058
	"in\n" ^
wneuper@59257
  1059
	"formals: " ^ terms2str formals ^ "\n" ^
wneuper@59257
  1060
	"actuals: " ^ terms2str actuals
wneuper@59257
  1061
in
neuper@42011
  1062
fun init_scrstate thy itms metID =
neuper@41996
  1063
  let
neuper@42011
  1064
    val actuals = itms2args thy metID itms
wneuper@59240
  1065
    val _ = if actuals <> [] then () else raise ERROR (errmsg ^ strs2str' metID)
wneuper@59257
  1066
    val (scr, sc) = (case (#scr o get_met) metID of
wneuper@59257
  1067
       scr as Prog sc => (scr, sc) | _ => raise ERROR ("init_scrstate with " ^ metID2str metID))
neuper@42011
  1068
    val formals = formal_args sc    
neuper@41996
  1069
	  (*expects same sequence of (actual) args in itms and (formal) args in met*)
neuper@41996
  1070
	  fun relate_args env [] [] = env
wneuper@59257
  1071
	    | relate_args _ _ [] = error (msg_miss (sc, metID, formals, actuals))
wneuper@59257
  1072
	    | relate_args env [] _ = env (*may drop Find!*)
neuper@41996
  1073
	    | relate_args env (a::aa) (f::ff) = 
wneuper@59257
  1074
	      if type_of a = type_of f 
wneuper@59257
  1075
	      then relate_args (env @ [(a, f)]) aa ff
wneuper@59257
  1076
        else error (msg_type (sc, metID, a, f, formals, actuals))
wneuper@59257
  1077
    val env = relate_args [] formals actuals;
wneuper@59257
  1078
    val ctxt = Proof_Context.init_global thy |> declare_constraints' actuals
wneuper@59257
  1079
    val {pre, prls, ...} = get_met metID;
wneuper@59257
  1080
    val pres = check_preconds thy prls pre itms |> map snd;
wneuper@59257
  1081
    val ctxt = ctxt |> insert_assumptions pres;
wneuper@59257
  1082
  in (ScrState (env, [], NONE, e_term, Safe, true), ctxt, scr) : istate * Proof.context * scr end;
wneuper@59257
  1083
end (*local*)
neuper@37906
  1084
neuper@41996
  1085
(* decide, where to get script/istate from:
wneuper@59257
  1086
   (* 1 *) from PblObj.env: at begin of script if no init_form
wneuper@59257
  1087
   (* 2 *) from PblObj/PrfObj: if stac is in the middle of the script
wneuper@59257
  1088
   (* 3 *) from rls/PrfObj: in case of detail a ruleset *)
wneuper@59257
  1089
fun from_pblobj_or_detail' _ (p, p_) pt =
wneuper@59257
  1090
  if member op = [Pbl, Met] p_
wneuper@59257
  1091
  then case get_obj g_env pt p of
wneuper@59257
  1092
    NONE => error "from_pblobj_or_detail': no istate"
wneuper@59257
  1093
  | SOME is =>
wneuper@59257
  1094
      let
wneuper@59257
  1095
        val metID = get_obj g_metID pt p
wneuper@59257
  1096
        val {srls, ...} = get_met metID
wneuper@59257
  1097
      in (srls, is, (#scr o get_met) metID) end
wneuper@59257
  1098
  else
wneuper@59257
  1099
    let val (pbl, p', rls') = par_pbl_det pt p
wneuper@59257
  1100
    in if pbl 
wneuper@59257
  1101
       then (*if last_elem p = 0 nothing written to pt yet*)                                (* 2 *)
wneuper@59257
  1102
         let
wneuper@59257
  1103
	         val metID = get_obj g_metID pt p'
wneuper@59257
  1104
	         val {srls,...} = get_met metID
wneuper@59257
  1105
	       in (srls, get_loc pt (p,p_), (#scr o get_met) metID) end
wneuper@59257
  1106
       else (*FIXME.WN0?: get from pbl or met !!! unused for Rrls in locate_gen, next_tac*) (* 3 *)
wneuper@59257
  1107
	       (e_rls, get_loc pt (p,p_),
wneuper@59257
  1108
	          case rls' of
wneuper@59257
  1109
		          Rls {scr = scr,...} => scr
wneuper@59257
  1110
	          | Seq {scr = scr,...} => scr
wneuper@59257
  1111
	          | Rrls {scr=rfuns,...} => rfuns
wneuper@59257
  1112
	          | Erls => error "from_pblobj_or_detail' with Erls")
wneuper@59257
  1113
    end
neuper@37906
  1114
wneuper@59257
  1115
(*.get script and istate from PblObj, see                                                  ( * 1 *)
bonzai@41948
  1116
fun from_pblobj' thy' (p,p_) pt =
neuper@42001
  1117
  let
neuper@42001
  1118
    val p' = par_pblobj pt p
neuper@42001
  1119
	  val thy = assoc_thy thy'
wneuper@59257
  1120
	  val itms =
wneuper@59257
  1121
	    (case get_obj I pt p' of
wneuper@59257
  1122
	      PblObj {meth = itms, ...} => itms
wneuper@59257
  1123
	    | PrfObj _ => error "from_pblobj' NOT with PrfObj")
neuper@42001
  1124
	  val metID = get_obj g_metID pt p'
wneuper@59257
  1125
	  val {srls, scr, ...} = get_met metID
neuper@42001
  1126
  in
neuper@42001
  1127
    if last_elem p = 0 (*nothing written to pt yet*)
neuper@42001
  1128
    then
neuper@42014
  1129
       let val (is, ctxt, scr) = init_scrstate thy itms metID
neuper@42001
  1130
	     in (srls, (is, ctxt), scr) end
wneuper@59257
  1131
    else (srls, get_loc pt (p,p_), scr)
wneuper@59257
  1132
  end;
neuper@37906
  1133
    
neuper@37906
  1134
(*.get the stactics and problems of a script as tacs
neuper@37906
  1135
  instantiated with the current environment;
neuper@37906
  1136
  l is the location which generated the given formula.*)
neuper@37906
  1137
(*WN.12.5.03: quick-and-dirty repair for listexpressions*)
neuper@37906
  1138
fun is_spec_pos Pbl = true
neuper@37906
  1139
  | is_spec_pos Met = true
neuper@37906
  1140
  | is_spec_pos _ = false;
neuper@37906
  1141
neuper@37906
  1142
(*. fetch _all_ tactics from script .*)
neuper@37906
  1143
fun sel_rules _ (([],Res):pos') = 
neuper@37906
  1144
    raise PTREE "no tactics applicable at the end of a calculation"
wneuper@59257
  1145
  | sel_rules pt (p,p_) =
wneuper@59257
  1146
    if is_spec_pos p_ 
wneuper@59257
  1147
    then [get_obj g_tac pt p]
wneuper@59257
  1148
    else
wneuper@59257
  1149
      let
wneuper@59257
  1150
        val pp = par_pblobj pt p;
wneuper@59257
  1151
        val thy' = (get_obj g_domID pt pp):theory';
wneuper@59257
  1152
        val thy = assoc_thy thy';
wneuper@59257
  1153
        val metID = get_obj g_metID pt pp;
wneuper@59257
  1154
        val metID' = if metID =e_metID then (thd3 o snd3) (get_obj g_origin pt pp) else metID
wneuper@59257
  1155
        val (sc, srls) = (case get_met metID' of
wneuper@59257
  1156
            {scr = Prog sc, srls, ...} => (sc, srls) | _ => error "sel_rules 1")
wneuper@59257
  1157
        val (env, a, v) = (case get_istate pt (p, p_) of
wneuper@59257
  1158
            ScrState (env, _, a, v, _, _) => (env, a, v) | _ => error "sel_rules 2")
wneuper@59257
  1159
      in map ((stac2tac pt thy) o rep_stacexpr o #2 o
wneuper@59257
  1160
  	    (handle_leaf "selrul" thy' srls env a v)) (stacpbls sc)
wneuper@59257
  1161
  	  end;
neuper@37906
  1162
neuper@37906
  1163
(*. fetch tactics from script and filter _applicable_ tactics;
neuper@37906
  1164
    in case of Rewrite_Set* go down to _atomic_ rewrite-tactics .*)
wneuper@59257
  1165
fun sel_appl_atomic_tacs _ (([], Res) : pos') = 
neuper@37906
  1166
    raise PTREE "no tactics applicable at the end of a calculation"
wneuper@59257
  1167
  | sel_appl_atomic_tacs pt (p, p_) =
neuper@37906
  1168
    if is_spec_pos p_ 
neuper@37906
  1169
    then [get_obj g_tac pt p]
neuper@37906
  1170
    else
neuper@42438
  1171
      let
neuper@42438
  1172
        val pp = par_pblobj pt p
neuper@42438
  1173
        val thy' = (get_obj g_domID pt pp):theory'
neuper@42438
  1174
        val thy = assoc_thy thy'
neuper@42438
  1175
        val metID = get_obj g_metID pt pp
neuper@42438
  1176
        val metID' =
neuper@42438
  1177
          if metID = e_metID 
neuper@42438
  1178
          then (thd3 o snd3) (get_obj g_origin pt pp)
neuper@42438
  1179
          else metID
wneuper@59257
  1180
        val (sc, srls, erls, ro) = (case get_met metID' of
wneuper@59257
  1181
            {scr = Prog sc, srls, erls, rew_ord' = ro, ...} => (sc, srls, erls, ro)
wneuper@59257
  1182
          | _ => error "sel_appl_atomic_tacs 1")
wneuper@59257
  1183
        val (env, a, v) = (case get_istate pt (p, p_) of
wneuper@59257
  1184
            ScrState (env, _, a, v, _, _) => (env, a, v) | _ => error "sel_appl_atomic_tacs 2")
neuper@42438
  1185
        val alltacs = (*we expect at least 1 stac in a script*)
neuper@42438
  1186
          map ((stac2tac pt thy) o rep_stacexpr o #2 o
neuper@42438
  1187
           (handle_leaf "selrul" thy' srls env a v)) (stacpbls sc)
neuper@42438
  1188
        val f =
wneuper@59257
  1189
          (case p_ of Frm => get_obj g_form pt p | Res => (fst o (get_obj g_result pt)) p
wneuper@59257
  1190
          | _ => error "")
neuper@42438
  1191
          (*WN071231 ? replace atomic_appl_tacs with applicable_in (ineff!) ?*)
wneuper@59253
  1192
      in ((gen_distinct eq_tac) o flat o (map (atomic_appl_tacs thy ro erls f))) alltacs end;
wneuper@59257
  1193
(**)
neuper@37906
  1194
end
wneuper@59257
  1195
(**)
wneuper@59257
  1196
(*open Lucin;*)