test/Tools/isac/Interpret/script.sml
author Walther Neuper <neuper@ist.tugraz.at>
Thu, 11 Jul 2013 16:58:31 +0200
changeset 48895 35751d90365e
parent 48790 98df8f6dc3f9
child 52101 c3f399ce32af
permissions -rw-r--r--
end of improving tests for isac on Isabelle2012

improvements:
# reactivated tests for error patterns, fill patterns
# reasons for outcommented test are given as much as possible,
see subsubsection {* State of tests *} in Test_Isac.thy
# detailed "Plans for updating isac from Isabelle2011 to Isabelle2012 and Isabelle2013"
in Build_Thydata.thy

remaining deficiencies:
# Counting "error in kernel" for Frontend/interface.sml (the tests considered most significant)
yields 69 hits, some of which were already present before Isabelle2002-->2009-2
# many tests are still outcommented; reactivation would require comparison
with isac on Isabelle2002 on an old notebook in many cases.
neuper@41999
     1
(* Title:  test/../script.sml
neuper@41999
     2
   Author: Walther Neuper 050908
neuper@37906
     3
   (c) copyright due to lincense terms.
neuper@37906
     4
*)
neuper@37906
     5
"-----------------------------------------------------------------";
neuper@37906
     6
"table of contents -----------------------------------------------";
neuper@37906
     7
"-----------------------------------------------------------------";
neuper@37906
     8
"----------- WN0509 why does next_tac doesnt find Substitute -----";
neuper@37906
     9
"----------- WN0509 Substitute 2nd part --------------------------";
neuper@37906
    10
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@41969
    11
"----------- fun init_form, fun get_stac -------------------------";
neuper@41972
    12
"----------- x+1=2 start SubProblem 'stac2tac_ TODO: no match for ";
neuper@42283
    13
"----------- Take as 1st stac in script --------------------------";
neuper@42394
    14
"----------- 'trace_script' from outside 'fun me '----------------";
neuper@42438
    15
"----------- fun sel_rules ---------------------------------------";
neuper@42438
    16
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@37906
    17
"-----------------------------------------------------------------";
neuper@37906
    18
"-----------------------------------------------------------------";
neuper@37906
    19
"-----------------------------------------------------------------";
neuper@37906
    20
neuper@42438
    21
val thy =  @{theory Isac};
neuper@42281
    22
neuper@37906
    23
"----------- WN0509 why does next_tac doesnt find Substitute -----";
neuper@37906
    24
"----------- WN0509 why does next_tac doesnt find Substitute -----";
neuper@37906
    25
"----------- WN0509 why does next_tac doesnt find Substitute -----";
neuper@37906
    26
neuper@37906
    27
(*replace met 'IntegrierenUndKonstanteBestimmen' with this script...*)
neuper@37906
    28
val str = (*#1#*)
akargl@42169
    29
"Script BiegelinieScript                                             " ^ 
akargl@42169
    30
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^ 
akargl@42169
    31
"(rb_rb::bool list) (rm_rm::bool list) =                             " ^
akargl@42169
    32
"  (let q___q = Take (M_b v_v = q__q);                               " ^
akargl@42169
    33
"       (M1__M1::bool) = ((Substitute [v_v = 0])) q___q              " ^
akargl@42169
    34
" in True)";
akargl@42169
    35
neuper@37906
    36
val sc' = ((inst_abs thy) o term_of o the o (parse thy)) str;
neuper@37906
    37
neuper@37906
    38
val str = (*#2#*)
akargl@42169
    39
"Script BiegelinieScript                                             " ^ 
akargl@42169
    40
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^ 
akargl@42169
    41
"(rb_rb::bool list) (rm_rm::bool list) =                             " ^ 
akargl@42169
    42
"       (M1__M1::bool) = ((Substitute [v_v = 0]) @@                  " ^
akargl@42169
    43
" in True)";(*..doesnt find Substitute with ..@@ !!!!!!!!!!!!!!!!!!!!!*)
neuper@37906
    44
neuper@37906
    45
val str = (*#3#*)
akargl@42169
    46
"Script BiegelinieScript                                             " ^
akargl@42169
    47
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^
akargl@42169
    48
"(rb_rb::bool list) (rm_rm::bool list) =                             " ^
akargl@42169
    49
"  (let q___q = Take (q_q v_v = q__q);                               " ^
akargl@42169
    50
"      (M1__M1::bool) = Substitute [v_v = 0]      q___q ;            " ^
akargl@42169
    51
"       M1__m1 =        Substitute [M_b 0 = 0]  M1__M1               " ^
akargl@42169
    52
" in True)"
neuper@37906
    53
;
neuper@37906
    54
val str = (*#4#*)
akargl@42169
    55
"Script BiegelinieScript                                             " ^
akargl@42169
    56
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^
akargl@42169
    57
"(rb_rb::bool list) (rm_rm::bool list) =                             " ^
akargl@42169
    58
"  (let q___q = Take (q_q v_v = q__q);                               " ^
akargl@42169
    59
"      (M1__M1::bool) = Substitute [v_v = 0]      q___q ;            " ^
akargl@42169
    60
"       M1__M1 =        Substitute [v_v = 1]      q___q ;            " ^
akargl@42169
    61
"       M1__M1 =        Substitute [v_v = 2]      q___q ;            " ^
akargl@42169
    62
"       M1__M1 =        Substitute [v_v = 3]      q___q ;            " ^
akargl@42169
    63
"       M1__M1 =        Substitute [M_b 0 = 0]  M1__M1               " ^
akargl@42169
    64
" in True)"
neuper@37906
    65
;
neuper@37906
    66
val str = (*#5#*)
akargl@42169
    67
"Script BiegelinieScript                                             " ^
akargl@42169
    68
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^
akargl@42169
    69
"(rb_rb::bool list) (rm_rm::bool list) =                             " ^
akargl@42169
    70
"  (let q___q = Take (M_b v_v = q__q);                               " ^
akargl@42169
    71
"      (M1__M1::bool) = Substitute [v_v = 0]      q___q ;            " ^
akargl@42169
    72
"       M2__M2 = Take q___q ;                                        " ^
akargl@42169
    73
"       M2__M2 =        Substitute [v_v = 2]      q___q              " ^
akargl@42169
    74
" in True)"
neuper@37906
    75
;
akargl@42145
    76
neuper@37906
    77
val sc' = ((inst_abs thy) o term_of o the o (parse thy)) str;
neuper@37906
    78
atomty sc';
akargl@42145
    79
neuper@48790
    80
val {scr = Prog sc,...} = get_met ["IntegrierenUndKonstanteBestimmen"];
neuper@37906
    81
(*---------------------------------------------------------------------
neuper@38031
    82
if sc = sc' then () else error"script.sml, doesnt find Substitute #1";
neuper@37906
    83
---------------------------------------------------------------------*)
neuper@37906
    84
neuper@37906
    85
"----------- WN0509 Substitute 2nd part --------------------------";
neuper@37906
    86
"----------- WN0509 Substitute 2nd part --------------------------";
neuper@37906
    87
"----------- WN0509 Substitute 2nd part --------------------------";
neuper@37906
    88
(*replace met 'IntegrierenUndKonstanteBestimmen' with this script...*)
neuper@37906
    89
val str = (*Substitute ; Substitute works*)
akargl@42169
    90
"Script BiegelinieScript                                             " ^
akargl@42169
    91
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^
akargl@42169
    92
"(rb_rb::bool list) (rm_rm::bool list) =                             "^
neuper@37906
    93
(*begin after the 2nd integrate*)
akargl@42169
    94
"  (let M__M = Take (M_b v_v = q__q);                                " ^
akargl@42169
    95
"       e1__e1 = nth_nth 1 rm_rm ;                                   " ^
akargl@42169
    96
"       (x1__x1::real) = argument_in (lhs e1__e1);                   " ^
akargl@42169
    97
"       (M1__M1::bool) = Substitute [v_v = x1__x1] M__M;             " ^
akargl@42169
    98
"        M1__M1        = Substitute [e1__e1] M1__M1                  " ^
akargl@42169
    99
" in True)"
neuper@37906
   100
;
neuper@37906
   101
val sc' = ((inst_abs thy) o term_of o the o (parse thy)) str;
neuper@37906
   102
atomty sc';
akargl@42145
   103
neuper@37906
   104
val str = (*Substitute @@ Substitute does NOT work???*)
akargl@42169
   105
"Script BiegelinieScript                                             " ^
akargl@42169
   106
"(l_l::real) (q__q::real) (v_v::real) (b_b::real=>real)              " ^
akargl@42169
   107
"(rb_rb::bool list) (rm_rm::bool list) =                             "^
neuper@37906
   108
(*begin after the 2nd integrate*)
akargl@42169
   109
"  (let M__M = Take (M_b v_v = q__q);                                " ^
akargl@42169
   110
"       e1__e1 = nth_nth 1 rm_rm ;                                   " ^
akargl@42169
   111
"       (x1__x1::real) = argument_in (lhs e1__e1);                   " ^
akargl@42169
   112
"       (M1__M1::bool) = ((Substitute [v_v = x1__x1]) @@             " ^
akargl@42169
   113
"                       (Substitute [e1__e1]))        M__M           " ^
akargl@42169
   114
" in True)"
neuper@37906
   115
;
neuper@37906
   116
neuper@48790
   117
val {scr = Prog sc,...} = get_met ["IntegrierenUndKonstanteBestimmen"];
neuper@37906
   118
(*---------------------------------------------------------------------
akargl@42169
   119
if sc = sc' then () else error "script.sml, doesnt find Substitute #1";
neuper@37906
   120
---------------------------------------------------------------------*)
neuper@37906
   121
val fmz = ["Traegerlaenge L",
neuper@37906
   122
	   "Streckenlast (- q_0 * x^^^2 / 2 + x * c + c_2)",
neuper@37906
   123
	   "Biegelinie y",
neuper@37906
   124
	   "RandbedingungenBiegung [y 0 = 0, y L = 0]",
neuper@37906
   125
	   "RandbedingungenMoment [M_b 0 = 0, M_b L = 0]",
neuper@37906
   126
	   "FunktionsVariable x"];
neuper@37906
   127
val (dI',pI',mI') =
neuper@38058
   128
  ("Biegelinie",["MomentBestimmte","Biegelinien"],
neuper@37906
   129
   ["IntegrierenUndKonstanteBestimmen"]);
neuper@37906
   130
val p = e_pos'; val c = [];
neuper@37906
   131
val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
akargl@42169
   132
val (p,_,f,nxt,_,pt) = me nxt p c pt; val (p,_,f,nxt,_,pt) = me nxt p c pt;
akargl@42169
   133
val (p,_,f,nxt,_,pt) = me nxt p c pt; val (p,_,f,nxt,_,pt) = me nxt p c pt;
akargl@42169
   134
val (p,_,f,nxt,_,pt) = me nxt p c pt; val (p,_,f,nxt,_,pt) = me nxt p c pt;
akargl@42169
   135
val (p,_,f,nxt,_,pt) = me nxt p c pt; val (p,_,f,nxt,_,pt) = me nxt p c pt;
akargl@42169
   136
val (p,_,f,nxt,_,pt) = me nxt p c pt; val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@37906
   137
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@37906
   138
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@37906
   139
case nxt of (_, Apply_Method ["IntegrierenUndKonstanteBestimmen"]) => ()
neuper@38031
   140
	  | _ => error "script.sml, doesnt find Substitute #2";
akargl@42169
   141
(* ERROR: caused by f2str f *)
neuper@37906
   142
trace_rewrite:=true;
neuper@42387
   143
neuper@37906
   144
val (p,_,f,nxt,_,pt) = me nxt p c pt; f2str f(*------------------------*);
neuper@37906
   145
trace_rewrite:=false;
akargl@42169
   146
  (*Exception TYPE raised:
akargl@42169
   147
    Illegal type for constant "HOL.eq" :: "[real, bool] => bool"
akargl@42169
   148
    Atools.argument'_in (Tools.lhs (ListG.nth_ (1 + -1 + -1) [])) =
akargl@42169
   149
    ListG.nth_ (1 + -1 + -1) []
akargl@42169
   150
    Exception-
akargl@42169
   151
       TYPE
akargl@42169
   152
          ("Illegal type for constant \"op =\" :: \"[real, bool] => bool\"",
akargl@42169
   153
             [],
akargl@42169
   154
             [Const ("HOL.Trueprop", "bool => prop") $
akargl@42169
   155
                   (Const ("HOL.eq", "[RealDef.real, bool] => bool") $ ... $ ...)])
akargl@42169
   156
       raised
akargl@42169
   157
    ... this was because eval_argument_in took "argument_in (lhs (M_b 0 = 0))"
akargl@42169
   158
    ie. the argument had not been simplified before          ^^^^^^^^^^^^^^^
akargl@42169
   159
    thus corrected eval_argument_in OK*)
neuper@37906
   160
val {srls,...} = get_met ["IntegrierenUndKonstanteBestimmen"];
neuper@42387
   161
val e1__e1 = str2term "NTH 1 [M_b 0 = 0, M_b L = 0]";
akargl@42169
   162
val e1__e1 = eval_listexpr_ @{theory Biegelinie} srls e1__e1; term2str e1__e1;
akargl@42169
   163
if term2str e1__e1 = "M_b 0 = 0"
akargl@42169
   164
  then ()
akargl@42169
   165
  else error"script.sml diff.beh. eval_listexpr_ nth_nth 1 [...";
neuper@37906
   166
neuper@37906
   167
(*TODO.WN050913 ??? doesnt eval_listexpr_ go into subterms ???...
akargl@42169
   168
 val x1__ = str2term"argument_in (lhs (M_b 0 = 0))";
akargl@42169
   169
 val x1__ = eval_listexpr_ Biegelinie.thy srls x1__; term2str x1__;
akargl@42169
   170
 (*no rewrite*)
akargl@42169
   171
 calculate_ Biegelinie.thy ("Tools.lhs", eval_rhs"eval_lhs_") x1__;
akargl@42169
   172
 val SOME (str, t) = eval_lhs 0 "Tools.lhs" (str2term"lhs (M_b 0 = 0)") 0;*)
neuper@37906
   173
akargl@42169
   174
val l__l = str2term "lhs (M_b 0 = 0)";
akargl@42169
   175
val l__l = eval_listexpr_ @{theory Biegelinie} srls l__l; term2str l__l;
akargl@42169
   176
val SOME (str, t) = eval_lhs 0 "Tools.lhs" (str2term "lhs (M_b 0 = 0)") 0;
neuper@42387
   177
akargl@42169
   178
val (p,_,f,nxt,_,pt) = me nxt p c pt; f2str f (*------------------------*);
neuper@42387
   179
if nxt = ("Rewrite", Rewrite ("Belastung_Querkraft", "Biegelinie.Belastung_Querkraft"))
neuper@42387
   180
then () else error "";
neuper@37906
   181
neuper@37906
   182
neuper@37906
   183
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@37906
   184
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@37906
   185
"----------- fun sel_appl_atomic_tacs ----------------------------";
akargl@42145
   186
neuper@37906
   187
states:=[];
neuper@41970
   188
CalcTree [(["equality (x+1=(2::real))", "solveFor x","solutions L"], 
neuper@41970
   189
  ("Test", ["sqroot-test","univariate","equation","test"],
neuper@37906
   190
   ["Test","squ-equ-test-subpbl1"]))];
neuper@37906
   191
Iterator 1;
neuper@37906
   192
moveActiveRoot 1;
neuper@37906
   193
autoCalculate 1 CompleteCalcHead;
neuper@37906
   194
autoCalculate 1 (Step 1);
neuper@37906
   195
autoCalculate 1 (Step 1);
neuper@37906
   196
val ((pt, p), _) = get_calc 1; show_pt pt;
neuper@37906
   197
val appltacs = sel_appl_atomic_tacs pt p;
neuper@37906
   198
if appltacs = 
neuper@48895
   199
(* WN130613
neuper@48895
   200
   [Rewrite ("radd_commute", "Test.radd_commute") (*"?m + ?n = ?n + ?m"*),
neuper@48895
   201
    Rewrite ("radd_assoc", "?m + ?n + ?k = ?m + (?n + ?k)"), Calculate "TIMES"] *)
neuper@48895
   202
   [Rewrite ("radd_commute", "Test.radd_commute"), 
neuper@48895
   203
    Rewrite ("add_assoc", "Groups.semigroup_add_class.add_assoc"), Calculate "TIMES"]
neuper@48895
   204
then () else error "script.sml fun sel_appl_atomic_tacs diff.behav.";
neuper@37906
   205
neuper@37906
   206
trace_script := true;
neuper@37906
   207
trace_script := false;
neuper@37906
   208
applyTactic 1 p (hd appltacs);
neuper@37906
   209
val ((pt, p), _) = get_calc 1; show_pt pt;
neuper@37906
   210
val appltacs = sel_appl_atomic_tacs pt p;
neuper@48895
   211
(*applyTactic 1 p (hd appltacs); WAS assy: call by ([3], Pbl)*)
neuper@37906
   212
akargl@42169
   213
"~~~~~ fun applyTactic, args:"; val ((cI:calcID), ip, tac) = (1, p, (hd appltacs));
akargl@42169
   214
val ((pt, _), _) = get_calc cI;
akargl@42169
   215
val p = get_pos cI 1;
akargl@42169
   216
locatetac;
akargl@42169
   217
locatetac tac;
akargl@42169
   218
akargl@42169
   219
(*locatetac tac (pt, ip); (*WAS assy: call by ([3], Pbl)*)*)
akargl@42169
   220
"~~~~~ fun locatetac, args:"; val (tac, (ptp as (pt, p))) = (tac, (pt, ip));
akargl@42169
   221
val (mI,m) = mk_tac'_ tac;
akargl@42169
   222
applicable_in p pt m ; (*Appl*)
akargl@42169
   223
member op = specsteps mI; (*false*)
akargl@42169
   224
(*loc_solve_ (mI,m) ptp; (*Argument: (mI, m) : string * tac Reason: Can't unify tac_ with tac*)*)
akargl@42169
   225
loc_solve_; (*without _ ??? result is -> lOc writing error ???*)
akargl@42169
   226
(*val it = fn: string * tac_ -> ptree * (pos * pos_) -> lOc_*)
akargl@42169
   227
(mI,m); (*string * tac*)
akargl@42169
   228
ptp (*ptree * pos'*);
akargl@42169
   229
"~~~~~ fun loc_solve_, args:"; val (m ,(pt,pos)) = ((mI,m), ptp);
akargl@42169
   230
(*val (msg, cs') = solve m (pt, pos);
akargl@42169
   231
(*Argument: m : string * tac Reason: Can't unify tac_ with tac (Different type constructors)*)*)
akargl@42169
   232
m;
akargl@42169
   233
(pt, pos);
akargl@42169
   234
"~~~~~ fun solve, args:"; val ((mI,m), (pt, po as (p,p_))) = (m, (pt, pos));
akargl@42169
   235
(*solve has still p_!!!!!!!!!!!!!!!!!!!!!!!!!*)
akargl@42169
   236
akargl@42169
   237
e_metID = get_obj g_metID pt (par_pblobj pt p); (*false*)
akargl@42169
   238
val ctxt = get_ctxt pt po;
akargl@42169
   239
akargl@42169
   240
(*generate1 (assoc_thy (get_obj g_domID pt (par_pblobj pt p))) m (e_istate, ctxt) (p,p_) pt;
akargl@42169
   241
(*Argument: m : tac Reason: Can't unify tac_ with tac (Different type constructors)*)*)
akargl@42169
   242
(assoc_thy (get_obj g_domID pt (par_pblobj pt p)));
akargl@42169
   243
assoc_thy;
akargl@42169
   244
neuper@37906
   245
autoCalculate 1 CompleteCalc;
neuper@37906
   246
neuper@41969
   247
"----------- fun init_form, fun get_stac -------------------------";
neuper@41969
   248
"----------- fun init_form, fun get_stac -------------------------";
neuper@41969
   249
"----------- fun init_form, fun get_stac -------------------------";
neuper@41969
   250
val fmz = ["equality (x+1=(2::real))", "solveFor x", "solutions L"];
neuper@41969
   251
val (dI',pI',mI') = ("Test",["sqroot-test","univariate","equation","test"],
neuper@41969
   252
  ["Test","squ-equ-test-subpbl1"]);
neuper@41969
   253
val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
neuper@41969
   254
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   255
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   256
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   257
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   258
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   259
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   260
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@41969
   261
"~~~~~ fun me, args:"; val (_,tac) = nxt;
neuper@41969
   262
"~~~~~ fun locatetac, args:"; val ptp as (pt, p) = (pt, p);
neuper@41969
   263
val (mI,m) = mk_tac'_ tac;
neuper@41969
   264
val Appl m = applicable_in p pt m;
neuper@41969
   265
member op = specsteps mI; (*false*)
neuper@41969
   266
"~~~~~ fun loc_solve_, args:"; val (m, (pt, pos) ) = ((mI, m), ptp);
neuper@41969
   267
"~~~~~ fun solve, args:"; val (("Apply_Method", Apply_Method' (mI,_,_,_)), pos as (p,_)) = (m, pos);
neuper@41969
   268
val {srls, ...} = get_met mI;
neuper@41969
   269
val PblObj {meth=itms, ...} = get_obj I pt p;
neuper@41969
   270
val thy' = get_obj g_domID pt p;
neuper@41969
   271
val thy = assoc_thy thy';
neuper@41969
   272
val (is as ScrState (env,_,_,_,_,_), ctxt, sc) = init_scrstate thy itms mI;
neuper@41969
   273
val ini = init_form thy sc env;
neuper@48790
   274
"----- fun init_form, args:"; val (Prog sc) = sc;
neuper@41969
   275
"----- fun get_stac, args:"; val (y, h $ body) = (thy, sc);
neuper@41969
   276
case get_stac thy sc of SOME (Free ("e_e", _)) => ()
neuper@41969
   277
| _ => error "script: Const (?, ?) in script (as term) changed";;
neuper@41969
   278
neuper@41972
   279
neuper@41972
   280
"----------- x+1=2 start SubProblem 'stac2tac_ TODO: no match for ";
neuper@41972
   281
"----------- x+1=2 start SubProblem 'stac2tac_ TODO: no match for ";
neuper@41972
   282
"----------- x+1=2 start SubProblem 'stac2tac_ TODO: no match for ";
neuper@41972
   283
val fmz = ["equality (x+1=(2::real))", "solveFor x","solutions L"];
neuper@41972
   284
val (dI',pI',mI') =
neuper@41972
   285
  ("Test", ["sqroot-test","univariate","equation","test"],
neuper@41972
   286
   ["Test","squ-equ-test-subpbl1"]);
neuper@41972
   287
val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
neuper@41972
   288
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   289
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   290
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   291
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   292
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   293
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   294
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   295
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   296
val (p,_,f,nxt,_,pt) = me nxt p [1] pt;
neuper@41972
   297
(*val (p,_,f,nxt,_,pt) = me nxt p [1] pt; WAS: Empty_Tac, helpless*)
neuper@41972
   298
show_pt pt;
neuper@41972
   299
"~~~~~ fun me, args:"; val (_,tac) = nxt;
neuper@41973
   300
val (pt, p) = case locatetac tac (pt,p) of
neuper@41973
   301
	("ok", (_, _, ptp))  => ptp | _ => error "script.sml locatetac";
neuper@41972
   302
"~~~~~ fun step, args:"; val (ip as (_,p_), (ptp as (pt,p), tacis)) = (p, ((pt, e_pos'), []))
neuper@41999
   303
val pIopt = get_pblID (pt,ip); (*SOME ["linear", "univariate", "equation", "test"]*)
neuper@41972
   304
tacis; (*= []*)
neuper@41972
   305
member op = [Pbl,Met] p_ andalso is_none (get_obj g_env pt (fst p)); (*= false*)
neuper@41972
   306
"~~~~~ fun nxt_solve_, args:"; val (ptp as (pt, pos as (p, p_))) = (pt, ip);
neuper@41972
   307
                                 (*WAS stac2tac_ TODO: no match for SubProblem*)
neuper@41972
   308
val thy' = get_obj g_domID pt (par_pblobj pt p);
neuper@41972
   309
val (srls, is, sc) = from_pblobj_or_detail' thy' (p,p_) pt;
neuper@48790
   310
"~~~~~ fun next_tac, args:"; val (thy, (ptp as (pt,(p,_)):ptree * pos'), (sc as Prog (h $ body)), 
neuper@41972
   311
	                               (ScrState (E,l,a,v,s,b), ctxt)) = ((thy',srls), (pt,pos), sc, is);
neuper@41972
   312
l; (*= [R, L, R, L, R, R]*)
neuper@41972
   313
val Appy (m', scrst as (_,_,_,v,_,_)) = nstep_up thy ptp sc E l Skip_ a v;
neuper@41972
   314
"~~~~~ dont like to go into nstep_up...";
neuper@41972
   315
val t = str2term ("SubProblem" ^ 
neuper@41972
   316
  "(Test', [linear, univariate, equation, test], [Test, solve_linear])" ^
neuper@41972
   317
  "[BOOL (-1 + x = 0), REAL x]");
neuper@41972
   318
val (tac, tac_) = stac2tac_ pt @{theory "Isac"} t; (*WAS stac2tac_ TODO: no match for SubProblem*)
neuper@41972
   319
case tac_ of 
neuper@41972
   320
  Subproblem' _ => ()
neuper@41972
   321
| _ => error "script.sml x+1=2 start SubProblem from script";
neuper@41972
   322
neuper@41972
   323
neuper@42283
   324
"----------- Take as 1st stac in script --------------------------";
neuper@42283
   325
"----------- Take as 1st stac in script --------------------------";
neuper@42283
   326
"----------- Take as 1st stac in script --------------------------";
neuper@42283
   327
val p = e_pos'; val c = []; 
neuper@42283
   328
val (p,_,f,nxt,_,pt) = 
neuper@42283
   329
    CalcTreeTEST 
neuper@42283
   330
        [(["functionTerm (x^^^2 + 1)", "integrateBy x", "antiDerivative FF"],
neuper@42283
   331
          ("Integrate", ["integrate","function"], ["diff","integration"]))];
neuper@42283
   332
val (p,_,f,nxt,_,pt) = me nxt p c pt; (*nxt = ("Tac ", ...) --> Add_Given...*)
neuper@42283
   333
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   334
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   335
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   336
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   337
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   338
val (p,_,f,nxt,_,pt) = me nxt p c pt;
neuper@42283
   339
case nxt of (_, Apply_Method ["diff", "integration"]) => ()
neuper@42283
   340
          | _ => error "integrate.sml -- me method [diff,integration] -- spec";
neuper@42283
   341
"----- step 8: returns nxt = Rewrite_Set_Inst ([\"(bdv, x)\"],\"integration\")";
neuper@42283
   342
neuper@42283
   343
"~~~~~ fun me, args:"; val (((_,tac):tac'_), (p:pos'), _, (pt:ptree)) = (nxt, p, c, pt);
neuper@42283
   344
"~~~~~ fun locatetac, args:"; val (tac, (ptp as (pt, p))) = (tac, (pt,p));
neuper@42283
   345
val (mI,m) = mk_tac'_ tac;
neuper@42283
   346
val Appl m = applicable_in p pt m;
neuper@42283
   347
member op = specsteps mI (*false*);
neuper@42283
   348
"~~~~~ fun loc_solve_, args:"; val (m, (pt,pos)) = ((mI,m), ptp);
neuper@42283
   349
"~~~~~ fun solve, args:"; val ((_, m as Apply_Method' (mI, _, _, _)), (pt, (pos as (p,_)))) = 
neuper@42283
   350
                            (m, (pt, pos));
neuper@42283
   351
val {srls, ...} = get_met mI;
neuper@42283
   352
        val PblObj {meth=itms, ...} = get_obj I pt p;
neuper@42283
   353
        val thy' = get_obj g_domID pt p;
neuper@42283
   354
        val thy = assoc_thy thy';
neuper@42283
   355
        val (is as ScrState (env,_,_,_,_,_), ctxt, sc) = init_scrstate thy itms mI;
neuper@42283
   356
        val ini = init_form thy sc env;
neuper@42283
   357
        val p = lev_dn p;
neuper@42283
   358
ini = NONE; (*true*)
neuper@42283
   359
            val (m', (is', ctxt'), _) = next_tac (thy', srls) (pt, (p, Res)) sc (is, ctxt);
neuper@42283
   360
	            val d = e_rls (*FIXME: get simplifier from domID*);
neuper@42283
   361
"~~~~~ fun locate_gen, args:"; val ((ts as (thy',srls)), (m:tac_), ((pt,p):ptree * pos'), 
neuper@48790
   362
	                     (scr as Prog (h $ body),d), (ScrState (E,l,a,v,S,b), ctxt)) = 
neuper@42283
   363
                   ((thy',srls), m', (pt,(p, Res)), (sc,d), (is', ctxt'));
neuper@42283
   364
val thy = assoc_thy thy';
neuper@42283
   365
l = [] orelse ((*init.in solve..Apply_Method...*)
neuper@42283
   366
			         (last_elem o fst) p = 0 andalso snd p = Res); (*true*)
neuper@42283
   367
"~~~~~ fun assy, args:"; val (ya, (is as (E,l,a,v,S,b),ss), 
neuper@42283
   368
                   (Const ("HOL.Let",_) $ e $ (Abs (id,T,body)))) = 
neuper@42283
   369
                 ((thy',ctxt,srls,d,Aundef), ((E,[R],a,v,S,b), [(m,EmptyMout,pt,p,[])]), body);
neuper@42283
   370
 (*check: true*) term2str e = "Take (Integral f_f D v_v)";
neuper@42283
   371
"~~~~~ fun assy, args:"; val ((thy',ctxt,sr,d,ap), (is as (E,l,a,v,S,b), (m,_,pt,(p,p_),c)::ss), t) = 
neuper@42283
   372
                           (ya, ((E , l@[L,R], a,v,S,b),ss), e);
neuper@42283
   373
val (a', STac stac) = handle_leaf "locate" thy' sr E a v t;
neuper@42283
   374
(*             val ctxt = get_ctxt pt (p,p_)
neuper@42283
   375
exception PTREE "get_obj: pos = [0] does not exist" raised 
neuper@42283
   376
(line 908 of "/usr/local/isabisac/src/Tools/isac/Interpret/ctree.sml")*)
neuper@42283
   377
neuper@42283
   378
neuper@42394
   379
"----------- 'trace_script' from outside 'fun me '----------------";
neuper@42394
   380
"----------- 'trace_script' from outside 'fun me '----------------";
neuper@42394
   381
"----------- 'trace_script' from outside 'fun me '----------------";
neuper@42394
   382
val fmz = ["equality (x+1=(2::real))", "solveFor x","solutions L"];
neuper@42394
   383
val (dI',pI',mI') =
neuper@42394
   384
   ("Test", ["sqroot-test","univariate","equation","test"],
neuper@42394
   385
    ["Test","squ-equ-test-subpbl1"]);
neuper@42394
   386
val (p,_,f,nxt,_,pt) = CalcTreeTEST [(fmz, (dI',pI',mI'))];
neuper@42394
   387
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   388
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   389
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   390
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   391
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   392
val (p,_,f,nxt,_,pt) = me nxt p [] pt;
neuper@42394
   393
val (p,_,f,nxt,_,pt) = me nxt p [] pt; (*nxt = Apply_Method ["Test", "squ-equ-test-subpbl1"]*)
neuper@42394
   394
(*from_pblobj_or_detail': no istate = from_pblobj_or_detail' "Isac" p pt;*)
neuper@42394
   395
neuper@42394
   396
val (p,_,f,nxt,_,pt) = me nxt p [] pt; (*---------------------------------------------------*)
neuper@42394
   397
val (p'''', pt'''') = (p, pt);
neuper@42394
   398
f2str f = "x + 1 = 2";          snd nxt = Rewrite_Set "norm_equation";
neuper@42394
   399
val (p, p_) = p(* = ([1], Frm)*);
neuper@48790
   400
val (srls, (ScrState scrstate, ctxt), Prog sc) = from_pblobj_or_detail' "Isac" (p, p_) pt;
neuper@42394
   401
val (env, loc_, curry_arg, res, Safe, true) = scrstate;
neuper@42394
   402
  env2str env = "[\"\n(e_e, x + 1 = 2)\",\"\n(v_v, x)\"]";
neuper@42394
   403
  loc_ = [];
neuper@42394
   404
  curry_arg = NONE;
neuper@42394
   405
  term2str res = "??.empty";                     (* scrstate before starting interpretation *)
neuper@48790
   406
(*term2str (go loc_ sc) = "Prog Solve_root_equation e_e v_v = ...*)
neuper@42394
   407
neuper@42394
   408
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   409
val (p'''', pt'''') = (p, pt);
neuper@42394
   410
f2str f = "x + 1 + -1 * 2 = 0"; snd nxt = Rewrite_Set "Test_simplify";
neuper@42394
   411
val (p, p_) = p(* = ([1], Res)*);
neuper@48790
   412
val (srls, (ScrState scrstate, ctxt), Prog sc) = from_pblobj_or_detail' "Isac" (p, p_) pt;
neuper@42394
   413
val (env, loc_, curry_arg, res, Safe, true) = scrstate;
neuper@42394
   414
  env2str env = "[\"\n(e_e, x + 1 = 2)\",\"\n(v_v, x)\"]";
neuper@42394
   415
  loc_ = [R, L, R, L, L, R, R];
neuper@42394
   416
  curry_arg = SOME (str2term "e_e::bool");
neuper@42394
   417
  term2str res = "x + 1 + -1 * 2 = 0";(* scrstate after norm_equation, before Test_simplify *)
neuper@42394
   418
term2str (go loc_ sc) = "Rewrite_Set norm_equation False";
neuper@42394
   419
neuper@42394
   420
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   421
val (p'''', pt'''') = (p, pt);
neuper@42394
   422
f2str f = "-1 + x = 0"; snd nxt = Subproblem ("Test", ["linear", "univariate", "equation", "test"]);
neuper@42394
   423
val (p, p_) = p(* = ([2], Res)*);
neuper@48790
   424
val (srls, (ScrState scrstate, ctxt), Prog sc) = from_pblobj_or_detail' "Isac" (p, p_) pt;
neuper@42394
   425
val (env, loc_, curry_arg, res, Safe, false) = scrstate;
neuper@42394
   426
  env2str env = "[\"\n(e_e, x + 1 = 2)\",\"\n(v_v, x)\"]";
neuper@42394
   427
  loc_ = [R, L, R, L, R, R];
neuper@42394
   428
  curry_arg = SOME (str2term "e_e::bool");
neuper@42394
   429
  term2str res = "-1 + x = 0";           (* scrstate after Test_simplify, before Subproblem *)
neuper@42394
   430
term2str (go loc_ sc) = "Rewrite_Set Test_simplify False";
neuper@42394
   431
neuper@42394
   432
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   433
val (p'''', pt'''') = (p, pt);     (*f2str f = exception Match; ...is a model, not a formula*)
neuper@42394
   434
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   435
val (p'''', pt'''') = (p, pt);
neuper@42394
   436
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   437
val (p'''', pt'''') = (p, pt);
neuper@42394
   438
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   439
val (p'''', pt'''') = (p, pt);
neuper@42394
   440
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   441
val (p'''', pt'''') = (p, pt);
neuper@42394
   442
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   443
val (p'''', pt'''') = (p, pt);
neuper@42394
   444
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   445
val (p'''', pt'''') = (p, pt);
neuper@42394
   446
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*nxt = Apply_Method ["Test", "solve_linear"]*)
neuper@42394
   447
(*from_pblobj_or_detail': no istate = from_pblobj_or_detail' "Isac" p pt;*)
neuper@42394
   448
neuper@42394
   449
val (p,_,f,nxt,_,pt) = me nxt p [] pt; (*---------------------------------------------------*)
neuper@42394
   450
val (p'''', pt'''') = (p, pt);
neuper@42394
   451
f2str f = "-1 + x = 0"; snd nxt = Rewrite_Set_Inst (["(bdv, x)"], "isolate_bdv");
neuper@42394
   452
val (p, p_) = p(* = ([3, 1], Frm)*);
neuper@48790
   453
val (srls, (ScrState scrstate, ctxt), Prog sc) = from_pblobj_or_detail' "Isac" (p, p_) pt;
neuper@42394
   454
val (env, loc_, curry_arg, res, Safe, true) = scrstate;
neuper@42394
   455
  env2str env = "[\"\n(e_e, -1 + x = 0)\",\"\n(v_v, x)\"]";
neuper@42394
   456
  loc_ = [];
neuper@42394
   457
  curry_arg = NONE;
neuper@42394
   458
  term2str res = "??.empty";                     (* scrstate before starting interpretation *)
neuper@48790
   459
(*term2str (go loc_ sc) = "Prog Solve_linear e_e v_v = ...*)
neuper@42394
   460
neuper@42394
   461
val (p,_,f,nxt,_,pt) = me nxt p'''' [] pt''''; (*-------------------------------------------*)
neuper@42394
   462
val (p'''', pt'''') = (p, pt);
neuper@42394
   463
f2str f = "x = 0 + -1 * -1"; snd nxt = Rewrite_Set "Test_simplify";
neuper@42394
   464
val (p, p_) = p(* = ([3, 1], Res)*);
neuper@48790
   465
val (srls, (ScrState scrstate, ctxt), Prog sc) = from_pblobj_or_detail' "Isac" (p, p_) pt;
neuper@42394
   466
val (env, loc_, curry_arg, res, Safe, true) = scrstate;
neuper@42394
   467
  env2str env = "[\"\n(e_e, -1 + x = 0)\",\"\n(v_v, x)\"]";
neuper@42394
   468
  loc_ = [R, L, R, L, R, L, R];
neuper@42394
   469
  curry_arg = SOME (str2term "e_e::bool");
neuper@42394
   470
  term2str res = "x = 0 + -1 * -1";(* scrstate after isolate_bdv, before Test_simplify *)
neuper@42394
   471
term2str (go loc_ sc) = "Rewrite_Set_Inst [(bdv, v_v)] isolate_bdv False";
neuper@42394
   472
neuper@42438
   473
"----------- fun sel_rules ---------------------------------------";
neuper@42438
   474
"----------- fun sel_rules ---------------------------------------";
neuper@42438
   475
"----------- fun sel_rules ---------------------------------------";
neuper@42438
   476
(* compare test/../interface.sml
neuper@42438
   477
"--------- getTactic, fetchApplicableTactics ------------";
neuper@42438
   478
*)
neuper@42438
   479
 states:=[];
neuper@42438
   480
 CalcTree [(["equality (x+1=(2::real))", "solveFor x","solutions L"], 
neuper@42438
   481
   ("Test", ["sqroot-test","univariate","equation","test"],
neuper@42438
   482
    ["Test","squ-equ-test-subpbl1"]))];
neuper@42438
   483
 Iterator 1;
neuper@42438
   484
 moveActiveRoot 1;
neuper@42438
   485
 autoCalculate 1 CompleteCalc;
neuper@42438
   486
 val ((pt,_),_) = get_calc 1;
neuper@42438
   487
 show_pt pt;
neuper@42394
   488
neuper@42438
   489
(*UC\label{SOLVE:MANUAL:TACTIC:listall} UC 30.3.2.2 p.175*)
neuper@42438
   490
 val tacs = sel_rules pt ([],Pbl);
neuper@42438
   491
 if tacs = [Apply_Method ["Test", "squ-equ-test-subpbl1"]] then ()
neuper@42438
   492
 else error "script.sml: diff.behav. in sel_rules ([],Pbl)";
neuper@42438
   493
neuper@42438
   494
 val tacs = sel_rules pt ([1],Res);
neuper@42438
   495
 if tacs = [Rewrite_Set "norm_equation", Rewrite_Set "Test_simplify",
neuper@42438
   496
      Subproblem ("Test", ["linear", "univariate", "equation", "test"]),
neuper@42438
   497
      Check_elementwise "Assumptions"] then ()
neuper@42438
   498
 else error "script.sml: diff.behav. in sel_rules ([1],Res)";
neuper@42438
   499
neuper@42438
   500
 val tacs = sel_rules pt ([3],Pbl);
neuper@42438
   501
 if tacs = [Apply_Method ["Test", "solve_linear"]] then ()
neuper@42438
   502
 else error "script.sml: diff.behav. in sel_rules ([3],Pbl)";
neuper@42438
   503
neuper@42438
   504
 val tacs = sel_rules pt ([3,1],Res);
neuper@42438
   505
 if tacs = [Rewrite_Set_Inst (["(bdv, x)"], "isolate_bdv"),
neuper@42438
   506
      Rewrite_Set "Test_simplify"] then ()
neuper@42438
   507
 else error "script.sml: diff.behav. in sel_rules ([3,1],Res)";
neuper@42438
   508
neuper@42438
   509
 val tacs = sel_rules pt ([3],Res);
neuper@42438
   510
 if tacs = [Rewrite_Set "norm_equation", Rewrite_Set "Test_simplify",
neuper@42438
   511
      Subproblem ("Test", ["linear", "univariate", "equation", "test"]),
neuper@42438
   512
      Check_elementwise "Assumptions"] then ()
neuper@42438
   513
 else error "script.sml: diff.behav. in sel_rules ([3],Res)";
neuper@42438
   514
neuper@42438
   515
 val tacs = (sel_rules pt ([],Res)) handle PTREE str => [Tac str];
neuper@42438
   516
 if tacs = [Tac "no tactics applicable at the end of a calculation"] then ()
neuper@42438
   517
 else error "script.sml: diff.behav. in sel_rules ([],Res)";
neuper@42438
   518
neuper@42438
   519
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@42438
   520
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@42438
   521
"----------- fun sel_appl_atomic_tacs ----------------------------";
neuper@42438
   522
 states:=[];
neuper@42438
   523
 CalcTree [(["equality (x+1=(2::real))", "solveFor x","solutions L"], 
neuper@42438
   524
   ("Test", ["sqroot-test","univariate","equation","test"],
neuper@42438
   525
    ["Test","squ-equ-test-subpbl1"]))];
neuper@42438
   526
 Iterator 1;
neuper@42438
   527
 moveActiveRoot 1;
neuper@42438
   528
 autoCalculate 1 CompleteCalc;
neuper@42438
   529
neuper@42438
   530
(*UC\label{SOLVE:MANUAL:TACTIC:listall} UC 30.3.2.2 p.175*)
neuper@42438
   531
 fetchApplicableTactics 1 99999 ([],Pbl);
neuper@42438
   532
neuper@42438
   533
 fetchApplicableTactics 1 99999 ([1],Res);
neuper@42438
   534
"~~~~~ fun fetchApplicableTactics, args:"; val (cI, (scope:int), (p:pos')) = (1, 99999, ([1],Res));
neuper@42438
   535
val ((pt, _), _) = get_calc cI;
neuper@42438
   536
(*version 1:*)
neuper@42438
   537
if sel_rules pt p = [Rewrite_Set "norm_equation", Rewrite_Set "Test_simplify",
neuper@42438
   538
  Subproblem ("Test", ["linear", "univariate", "equation", "test"]),
neuper@42438
   539
  Check_elementwise "Assumptions"] then ()
neuper@42438
   540
else error "fetchApplicableTactics ([1],Res) changed";
neuper@42438
   541
(*version 2:*)
neuper@42438
   542
(*WAS:
neuper@42438
   543
sel_appl_atomic_tacs pt p;
neuper@42438
   544
...
neuper@42438
   545
### atomic_appl_tacs: not impl. for tac='Subproblem(Test,["linear","univariate","equation","test"])' 
neuper@42438
   546
### atomic_appl_tacs: not impl. for tac = 'Check_elementwise "Assumptions"' 
neuper@42438
   547
*)
neuper@42438
   548
neuper@42438
   549
"~~~~~ fun sel_appl_atomic_tacs, args:"; val (pt, (p,p_)) = (pt, p);
neuper@42438
   550
is_spec_pos p_ = false;
neuper@42438
   551
        val pp = par_pblobj pt p
neuper@42438
   552
        val thy' = (get_obj g_domID pt pp):theory'
neuper@42438
   553
        val thy = assoc_thy thy'
neuper@42438
   554
        val metID = get_obj g_metID pt pp
neuper@42438
   555
        val metID' =
neuper@42438
   556
          if metID = e_metID 
neuper@42438
   557
          then (thd3 o snd3) (get_obj g_origin pt pp)
neuper@42438
   558
          else metID
neuper@48790
   559
        val {scr=Prog sc,srls,erls,rew_ord'=ro,...} = get_met metID'
neuper@42438
   560
        val ScrState (env,_,a,v,_,_) = get_istate pt (p,p_)
neuper@42438
   561
        val alltacs = (*we expect at least 1 stac in a script*)
neuper@42438
   562
          map ((stac2tac pt thy) o rep_stacexpr o #2 o
neuper@42438
   563
           (handle_leaf "selrul" thy' srls env a v)) (stacpbls sc)
neuper@42438
   564
        val f =
neuper@42438
   565
          case p_ of
neuper@42438
   566
              Frm => get_obj g_form pt p
neuper@42438
   567
            | Res => (fst o (get_obj g_result pt)) p
neuper@42438
   568
(*WN120611 stopped and took version 1 again for fetchApplicableTactics !
neuper@42438
   569
(distinct o flat o (map (atomic_appl_tacs thy ro erls f))) alltacs
neuper@42438
   570
...
neuper@42438
   571
### atomic_appl_tacs: not impl. for tac='Subproblem(Test,["linear","univariate","equation","test"])' 
neuper@42438
   572
### atomic_appl_tacs: not impl. for tac = 'Check_elementwise "Assumptions"' 
neuper@42438
   573
*)
neuper@42438
   574