src/Tools/isac/calcelems.sml
author Walther Neuper <neuper@ist.tugraz.at>
Fri, 20 Aug 2010 12:25:37 +0200
branchisac-update-Isa09-2
changeset 37934 56f10b13005e
parent 37929 862f35fdb091
child 37947 22235e4dbe5f
permissions -rw-r--r--
finished update ME/calchead.sml + pushed updates over all sml+test

not yet tackled in upcoming files:
# ProtoPure.thy --> (theory "Pure")
# cterm_of (sign_of thy) --> (Thm.cterm thy)
# member op = --> DONE, but TODO swap args
# string_of_cterm (cterm_of (sign_of " --> "(Syntax.string_of_term (thy2ctxt "
# Pattern.match
# there seem to be Problems with assoc_thy !?!
     1 (* elements of calculations.
     2    they are partially held in association lists as ref's for
     3    switching language levels (meta-string, object-values).
     4    in order to keep these ref's during re-evaluation of code,
     5    they are defined here at the beginning of the code.
     6    author: Walther Neuper
     7    (c) isac-team 2003
     8  
     9 use"calcelems.sml";
    10 *)
    11 
    12 val linefeed = (curry op^) "\n";
    13 type authors = string list;
    14 
    15 type cterm' = string;
    16 val empty_cterm' = "empty_cterm'";
    17 type thmID = string;
    18 type thm' = thmID * cterm';(*WN060610 deprecated in favour of thm''*)
    19 type thm'' = thmID * term;
    20 type rls' = string;
    21 (*.a 'guh'='globally unique handle' is a string unique for each element 
    22    of isac's KEStore and persistent over time
    23    (in particular under shifts within the respective hierarchy);
    24    specialty for thys: 
    25    # guh NOT resistant agains shifts from one thy to another
    26    (which is the price for Isabelle's design: thy's overwrite ids of subthy's)
    27    # requirement for matchTheory: induce guh from tac + current thy
    28    (see 'fun thy_containing_thm', 'fun thy_containing_rls' etc.)
    29    TODO: introduce to pbl, met.*) 
    30 type guh = string;
    31 val e_guh = "e_guh":guh;
    32 
    33 type xml = string;
    34 
    35 (*. eval function calling sml code during rewriting.*)
    36 type eval_fn = (string -> term -> theory -> (string * term) option);
    37 fun e_evalfn (_:'a) (_:term) (_:theory) = NONE:(string * term) option;
    38 (*. op in isa-term 'Const(op,_)' .*)
    39 type calID = string;
    40 type cal = (calID * eval_fn);
    41 (*. fun calculate_ fetches the evaluation-function via this list. *)
    42 type calcID = string;
    43 type calc = (calcID * cal);
    44 
    45 type subs' = (cterm' * cterm') list; (*16.11.00 for FE-KE*)
    46 type subst = (term * term) list; (*here for ets2str*)
    47 val e_subst = []:(term * term) list;
    48 
    49 (*TODO.WN060610 make use of "type rew_ord" total*)
    50 type rew_ord' = string;
    51 val e_rew_ord' = "e_rew_ord" : rew_ord';
    52 type rew_ord_ = subst -> Term.term * Term.term -> bool;
    53 fun dummy_ord (_:subst) (_:term,_:term) = true;
    54 val e_rew_ord_ = dummy_ord;
    55 type rew_ord = rew_ord' * rew_ord_;
    56 val e_rew_ord = dummy_ord; (* TODO.WN071231 clarify identifiers..e_rew_ordX*)
    57 val e_rew_ordX = (e_rew_ord', e_rew_ord_) : rew_ord;
    58 
    59 
    60 datatype rule = 
    61   Erule                (*.the empty rule                     .*)
    62 | Thm of (string * thm)(*.a theorem, ie (identifier, Thm.thm).*)
    63 | Calc of string *     (*.sml-code manipulating a (sub)term  .*)
    64 	  (string -> term -> theory -> (string * term) option)
    65 | Cal1 of string *     (*.sml-code applied only to whole term
    66                           or left/right-hand-side of eqality .*)
    67 	  (string -> term -> theory -> (string * term) option)
    68 | Rls_ of rls          (*.ie. rule sets may be nested.*)
    69 and scr = 
    70     EmptyScr 
    71   | Script of term (*for met*)
    72   | Rfuns of {init_state : term -> 
    73      (term *          (*the current formula: 
    74                         goes locate_gen -> next_tac via istate*)
    75       term *          (*the final formula*)
    76       rule list       (*of reverse rewrite set (#1#)*)
    77 	    list *    (*may be serveral, eg. in norm_rational*)
    78       (rule *         (*Thm (+ Thm generated from Calc) resulting in ...*)
    79        (term *        (*... rewrite with ...*)
    80 	term list))   (*... assumptions*)
    81 	  list),      (*derivation from given term to normalform
    82 		       in reverse order with sym_thm; 
    83                        (#1#) could be extracted from here #1*)
    84 
    85 	      normal_form: term -> (term * term list) option,
    86 	      locate_rule: rule list list -> term -> rule 
    87 			   -> (rule * (term * term list)) list,
    88 	      next_rule  : rule list list -> term -> rule option,
    89 	      attach_form: rule list list -> term -> term 
    90 			   -> (rule * (term * term list)) list}
    91 and rls =
    92     Erls                          (*for init e_rls*)
    93   
    94   | Rls of (*a confluent and terminating ruleset, in general         *)
    95     {id : string,          (*for trace_rewrite:=true                 *)
    96      preconds : term list, (*unused WN020820                         *)
    97      (*WN060616 for efficiency...
    98       bdvs    : false,       (*set in prep_rls for get_bdvs *)*)
    99      rew_ord  : rew_ord,   (*for rules*)
   100      erls     : rls,       (*for the conditions in rules             *)
   101      srls     : rls,       (*for evaluation of list_fns in script    *)
   102      calc     : calc list, (*for Calculate in scr, set by prep_rls   *)
   103      rules    : rule list,
   104      scr      : scr}       (*Script term: generating intermed.steps  *)
   105   | Seq of (*a sequence of rules to be tried only once               *)
   106     {id : string,          (*for trace_rewrite:=true                 *)
   107      preconds : term list, (*unused 20.8.02                          *)
   108      (*WN060616 for efficiency...
   109       bdvs    : false,       (*set in prep_rls for get_bdvs *)*)
   110      rew_ord  : rew_ord,   (*for rules                               *)
   111      erls     : rls,       (*for the conditions in rules             *)
   112      srls     : rls,       (*for evaluation of list_fns in script    *)
   113      calc     : calc list, (*for Calculate in scr, set by prep_rls   *) 
   114      rules    : rule list,
   115      scr      : scr}  (*Script term  (how to restrict type ???)*)
   116   (*Rrls call SML-code and simulate an rls
   117     difference: there is always _ONE_ redex rewritten in 1 call,
   118     thus wrap Rrls by: Rls (Rls_ ...)*)
   119   
   120   | Rrls of (*for 'reverse rewriting' by SML-functions instead Script*)
   121     {id : string,          (*for trace_rewrite:=true                 *)
   122      prepat  : (term list *(*preconds, eval with subst from pattern  *)
   123 		term )     (*pattern matched in subterms             *)
   124 		   list,   (*meta-conjunction is or                  *)
   125      rew_ord  : rew_ord,   (*for rules                               *)
   126      erls     : rls,       (*for the conditions in rules and pat     *)
   127      (*            '^ because of rewrite in applicable_in
   128 						compare type met*)
   129      calc     : calc list, (*for Calculate in scr, set by prep_rls *)
   130      scr      : scr}; (*Rfuns {...}  (how to restrict type ???)*)
   131 (*1.8.02 ad (how to restrict type ???): scr should be usable indepentently
   132   from rls, and then contain both Script _AND_ Rfuns !!!*)
   133 
   134 fun thy2ctxt' thy' = ProofContext.init_global (theory thy');(*FIXXXME thy-ctxt*)
   135 fun thy2ctxt thy = ProofContext.init_global thy;(*FIXXXME thy-ctxt*)
   136 
   137 (*ctxt for retrieval of all thms in HOL; FIXME make this local?*)
   138 (*val ctxt_HOL = ProofContext.init_global (theory "Complex_Main");*)
   139 (*val ctxt_HOL = thy2ctxt' "Complex_Main";*)
   140 (*lazy ctxt for retrieval of all thms used in isac; FIXME make this local?*)
   141 (*fun ctxt_Isac _  = thy2ctxt' "Isac";*)
   142 fun Isac _ = ProofContext.theory_of (thy2ctxt' "Isac");
   143 
   144 val e_rule = 
   145     Thm ("refl", ProofContext.get_thm (thy2ctxt' "Complex_Main") "refl" );
   146 fun id_of_thm (Thm (id, _)) = id
   147   | id_of_thm _ = raise error "id_of_thm";
   148 fun thm_of_thm (Thm (_, thm)) = thm
   149   | thm_of_thm _ = raise error "thm_of_thm";
   150 fun rep_thm_G' (Thm (thmid, thm)) = (thmid, thm);
   151 fun eq_thmI ((thmid1 : thmID, _ : thm), (thmid2 : thmID, _ : thm)) =
   152     (strip_thy thmid1) = (strip_thy thmid2);
   153 
   154 
   155 val string_of_thm =  Thm.get_name_hint; (*FIXME.2009*)
   156 (*check for [.] as caused by "fun assoc_thm'"*)
   157 fun string_of_thmI thm =
   158     let val ct' = (de_quote o string_of_thm) thm
   159 	val (a, b) = split_nlast (5, explode ct')
   160     in case b of 
   161 	   [" ", " ","[", ".", "]"] => implode a
   162 	 | _ => ct'
   163     end;
   164 
   165 (*.id requested for all, Rls,Seq,Rrls.*)
   166 fun id_rls Erls = "e_rls" (*WN060714 quick and dirty: recursive defs!*)
   167   | id_rls (Rls {id,...}) = id
   168   | id_rls (Seq {id,...}) = id
   169   | id_rls (Rrls {id,...}) = id;
   170 val rls2str = id_rls;
   171 fun id_rule (Thm (id, _)) = id
   172   | id_rule (Calc (id, _)) = id
   173   | id_rule (Rls_ rls) = id_rls rls;
   174 
   175 fun get_rules (Rls {rules,...}) = rules
   176   | get_rules (Seq {rules,...}) = rules
   177   | get_rules (Rrls _) = [];
   178 
   179 fun rule2str Erule = "Erule"
   180   | rule2str (Thm (str, thm)) = "Thm (\""^str^"\","^(string_of_thmI thm)^")"
   181   | rule2str (Calc (str,f))  = "Calc (\""^str^"\",fn)"
   182   | rule2str (Cal1 (str,f))  = "Cal1 (\""^str^"\",fn)"
   183   | rule2str (Rls_ rls) = "Rls_ (\""^id_rls rls^"\")";
   184 fun rule2str' Erule = "Erule"
   185   | rule2str' (Thm (str, thm)) = "Thm (\""^str^"\",\"\")"
   186   | rule2str' (Calc (str,f))  = "Calc (\""^str^"\",fn)"
   187   | rule2str' (Cal1 (str,f))  = "Cal1 (\""^str^"\",fn)"
   188   | rule2str' (Rls_ rls) = "Rls_ (\""^id_rls rls^"\")";
   189 
   190 (*WN080102 compare eq_rule ?!?*)
   191 fun eqrule (Thm (id1,_), Thm (id2,_)) = id1 = id2
   192   | eqrule (Calc (id1,_), Calc (id2,_)) = id1 = id2
   193   | eqrule (Cal1 (id1,_), Cal1 (id2,_)) = id1 = id2
   194   | eqrule (Rls_ _, Rls_ _) = false (*{id=id1}{id=id2} = id1 = id2 FIXXME*)
   195   | eqrule _ = false;
   196 
   197 
   198 type rrlsstate =      (*state for reverse rewriting*)
   199      (term *          (*the current formula: 
   200                         goes locate_gen -> next_tac via istate*)
   201       term *          (*the final formula*)
   202       rule list       (*of reverse rewrite set (#1#)*)
   203 	    list *    (*may be serveral, eg. in norm_rational*)
   204       (rule *         (*Thm (+ Thm generated from Calc) resulting in ...*)
   205        (term *        (*... rewrite with ...*)
   206 	term list))   (*... assumptions*)
   207 	  list);      (*derivation from given term to normalform
   208 		       in reverse order with sym_thm; 
   209                        (#1#) could be extracted from here #1*)
   210 val e_type = Type("empty",[]);
   211 val a_type = TFree("'a",[]);
   212 val e_term = Const("empty",e_type);
   213 val a_term = Free("empty",a_type);
   214 val e_rrlsstate = (e_term,e_term,[[e_rule]],[(e_rule,(e_term,[]))]):rrlsstate;
   215 
   216 
   217 
   218 
   219 (*22.2.02: ging auf Linux nicht (Stefan)
   220 val e_scr = Script ((term_of o the o (parse thy)) "e_script");*)
   221 val e_term = Const("empty", Type("'a", []));
   222 val e_scr = Script e_term;
   223 
   224 
   225 (*ad thm':
   226    there are two kinds of theorems ...
   227    (1) known by isabelle
   228    (2) not known, eg. calc_thm, instantiated rls
   229        the latter have a thmid "#..."
   230    and thus outside isa we ALWAYS transport both (thmid,string_of_thmI)
   231    and have a special assoc_thm / assoc_rls in this interface      *)
   232 type theory' = string; (* = domID ^".thy" *)
   233 type domID = string;   (* domID ^".thy" = theory' TODO.11.03replace by thyID*)
   234 type thyID = string;    (*WN.3.11.03 TODO: replace domID with thyID*)
   235 
   236 fun string_of_thy thy = Context.theory_name thy: theory';
   237 val theory2domID = string_of_thy;
   238 val theory2thyID = (get_thy o string_of_thy) : theory -> thyID;
   239 val theory2theory' = string_of_thy;
   240 val theory2str = string_of_thy; (*WN050903 ..most consistent naming*)
   241 val theory2str' = implode o (drop_last_n 4) o explode o string_of_thy;
   242 (*> theory2str' Isac.thy;
   243 al it = "Isac" : string
   244 *)
   245 
   246 fun thyID2theory' (thyID:thyID) =
   247     let val ss = explode thyID
   248 	val ext = implode (takelast (4, ss))
   249     in if ext = ".thy" then thyID : theory' (*disarm abuse of thyID*)
   250        else thyID ^ ".thy"
   251     end;
   252 (* thyID2theory' "Isac" (*ok*);
   253 val it = "Isac.thy" : theory'
   254  > thyID2theory' "Isac.thy" (*abuse, goes ok...*);
   255 val it = "Isac.thy" : theory'
   256 *)
   257 
   258 fun theory'2thyID (theory':theory') =
   259     let val ss = explode theory'
   260 	val ext = implode (takelast (4, ss))
   261     in if ext = ".thy" then ((implode o (drop_last_n 4)) ss) : thyID
   262        else theory' (*disarm abuse of theory'*)
   263     end;
   264 (* theory'2thyID "Isac.thy";
   265 val it = "Isac" : thyID
   266 > theory'2thyID "Isac";
   267 val it = "Isac" : thyID*)
   268 
   269 
   270 (*. WN0509 discussion:
   271 #############################################################################
   272 #   How to manage theorys in subproblems wrt. the requirement,              #
   273 #   that scripts should be re-usable ?                                      #
   274 #############################################################################
   275 
   276     eg. 'Script Solve_rat_equation' calls 'SubProblem (RatEq_,..'
   277     which would not allow to 'solve (y'' = -M_b / EI, M_b)' by this script
   278     because Biegelinie.thy is subthy of RatEq.thy and thus Biegelinie.M_b 
   279     is unknown in RatEq.thy and M_b cannot be parsed into the scripts guard
   280     (see match_ags).
   281 
   282     Preliminary solution:
   283     # the thy in 'SubProblem (thy_, pbl, arglist)' is not taken automatically,
   284     # instead the 'maxthy (rootthy pt) thy_' is taken for each subpbl
   285     # however, a thy specified by the user in the rootpbl may lead to 
   286       errors in far-off subpbls (which are not yet reported properly !!!) 
   287       and interactively specifiying thys in subpbl is not very relevant.
   288 
   289     Other solutions possible:
   290     # always parse and type-check with Isac.thy
   291       (rejected tue to the vague idea eg. to re-use equations for R in C etc.)
   292     # regard the subthy-relation in specifying thys of subpbls
   293     # specifically handle 'SubProblem (undefined_, pbl, arglist)'
   294     # ???
   295 .*)
   296 (*WN0509 TODO "ProtoPure" ... would be more consistent 
   297   with assoc_thy <--> theory2theory' +FIXME assoc_thy "e_domID" -> Script.thy*)
   298 val e_domID = "e_domID":domID;
   299 
   300 (*the key into the hierarchy ob theory elements*)
   301 type theID = string list;
   302 val e_theID = ["e_theID"];
   303 val theID2str = strs2str;
   304 (*theID eg. is ["IsacKnowledge", "Test", "Rulesets", "ac_plus_times"]*)
   305 fun theID2thyID (theID:theID) =
   306     if length theID >= 3 then (last_elem o (drop_last_n 2)) theID : thyID
   307     else raise error ("theID2thyID called with "^ theID2str theID);
   308 
   309 (*the key into the hierarchy ob problems*)
   310 type pblID = string list; (* domID::...*)
   311 val e_pblID = ["e_pblID"]:pblID;
   312 val pblID2str = strs2str;
   313 
   314 (*the key into the hierarchy ob methods*)
   315 type metID = string list;
   316 val e_metID = ["e_metID"]:metID;
   317 val metID2str = strs2str;
   318 
   319 (*either theID or pblID or metID*)
   320 type kestoreID = string list;
   321 val e_kestoreID = ["e_kestoreID"];
   322 val kestoreID2str = strs2str;
   323 
   324 (*for distinction of contexts*)
   325 datatype ketype = Exp_ | Thy_ | Pbl_ | Met_;
   326 fun ketype2str Exp_ = "Exp_"
   327   | ketype2str Thy_ = "Thy_" 
   328   | ketype2str Pbl_ = "Pbl_" 
   329   | ketype2str Met_ = "Met_";
   330 fun ketype2str' Exp_ = "Example"
   331   | ketype2str' Thy_ = "Theory" 
   332   | ketype2str' Pbl_ = "Problem" 
   333   | ketype2str' Met_ = "Method";
   334 
   335 (*see 'How to manage theorys in subproblems' at 'type thyID'*)
   336 val theory'  = ref ([]:(theory' * theory) list);
   337 
   338 (*.all theories defined for Scripts, recorded in Scripts/Script.ML; 
   339    in order to distinguish them from general IsacKnowledge defined later on.*)
   340 val script_thys = ref ([] : (theory' * theory) list);
   341 
   342 
   343 (*rewrite orders, also stored in 'type met' and type 'and rls'
   344   The association list is required for 'rewrite.."rew_ord"..'
   345   WN0509 tests not well-organized: see smltest/IsacKnowledge/termorder.sml*)
   346 val rew_ord' = 
   347     ref ([]:(rew_ord' *        (*the key for the association list         *)
   348 	     (subst 	       (*the bound variables - they get high order*)
   349 	      -> (term * term) (*(t1, t2) to be compared                  *)
   350 	      -> bool))        (*if t1 <= t2 then true else false         *)
   351 		list);         (*association list                         *)
   352 rew_ord' := overwritel (!rew_ord', [("e_rew_ord", e_rew_ord),
   353 				    ("dummy_ord", dummy_ord)]);
   354 
   355 
   356 (*WN060120 a hack to get alltogether run again with minimal effort:
   357   theory' is inserted for creating thy_hierarchy; calls for assoc_rls
   358   need not be called*)
   359 val ruleset' = ref ([]:(rls' * (theory' * rls)) list);
   360 
   361 (*FIXME.040207 calclist': used by prep_rls, NOT in met*)
   362 val calclist'= ref ([]: calc list);
   363 
   364 (*.the hierarchy of thydata.*)
   365 
   366 (*.'a is for pbt | met.*)
   367 (*WN.24.4.03 -"- ... type parameters; afterwards naming inconsistent*)
   368 datatype 'a ptyp = 
   369 	 Ptyp of string *   (*element within pblID*)
   370 		 'a list *  (*several pbts with different domIDs/thy
   371 			      TODO: select by subthy (isaref.p.69)
   372 			      presently only _ONE_ elem*)
   373 		 ('a ptyp) list;   (*the children nodes*)
   374 
   375 (*.datatype for collecting thydata for hierarchy.*)
   376 (*WN060720 more consistent naming would be 'type thyelem' or 'thelem'*)
   377 (*WN0606 Htxt contains html which does not belong to the sml-kernel*)
   378 datatype thydata = Html of {guh: guh,
   379 			    coursedesign: authors,
   380 			    mathauthors: authors,
   381 			    html: string} (*html; for demos before database*)
   382 		 | Hthm of {guh: guh,
   383 			    coursedesign: authors,
   384 			    mathauthors: authors,
   385 			    thm: Thm.thm}
   386 		 | Hrls of {guh: guh,
   387 			    coursedesign: authors,
   388 			    mathauthors: authors,
   389 			    (*like   vvvvvvvvvvvvv val ruleset'
   390 			     WN060711 redesign together !*)
   391 			    thy_rls: (thyID * rls)}
   392 		 | Hcal of {guh: guh,
   393 			    coursedesign: authors,
   394 			    mathauthors: authors,
   395 			    calc: calc}
   396 		 | Hord of {guh: guh,
   397 			    coursedesign: authors,
   398 			    mathauthors: authors,
   399 			    ord: (subst -> (term * term) -> bool)};
   400 val e_thydata = Html {guh="e_guh", coursedesign=[], mathauthors=[], html=""};
   401 
   402 type thehier = (thydata ptyp) list;
   403 val thehier = ref ([] : thehier);
   404 
   405 (*.an association list, gets the value once in Isac.ML.*)
   406 val isab_thm_thy = ref ([] : (thmID * (thyID * thm)) list);
   407 
   408 
   409 type path = string;
   410 type filename = string;
   411 
   412 (*val xxx = fn: a b => (a,b);   ??? fun-definition ???*)
   413 local
   414     fun ii (_:term) = e_rrlsstate;
   415     fun no (_:term) = SOME (e_term,[e_term]);
   416     fun lo (_:rule list list) (_:term) (_:rule) = [(e_rule,(e_term,[e_term]))];
   417     fun ne (_:rule list list) (_:term) = SOME e_rule;
   418     fun fo (_:rule list list) (_:term) (_:term) = [(e_rule,(e_term,[e_term]))];
   419 in
   420 val e_rfuns = Rfuns {init_state=ii,normal_form=no,locate_rule=lo,
   421 		     next_rule=ne,attach_form=fo};
   422 end;
   423 
   424 val e_rls = 
   425   Rls{id = "e_rls",
   426       preconds = [], 
   427       rew_ord = ("dummy_ord", dummy_ord),
   428       erls = Erls,srls = Erls,
   429       calc = [],
   430       rules = [], scr = EmptyScr}:rls;
   431 val e_rrls = Rrls {id = "e_rrls",
   432 		   prepat = [],
   433 		   rew_ord = ("dummy_ord", dummy_ord),
   434 		   erls = Erls,
   435 		   calc = [],
   436 		   (*asm_thm=[],*)
   437 		   scr=e_rfuns}:rls;
   438 ruleset' := overwritel (!ruleset', [("e_rls",("Tools",e_rls)),
   439 				    ("e_rrls",("Tools",e_rrls))
   440 				    ]);
   441 
   442 fun rep_rls (Rls {id,preconds,rew_ord,erls,srls,calc,(*asm_thm,*)rules,scr}) =
   443   {id=id,preconds=preconds,rew_ord=rew_ord,erls=erls,srls=srls,calc=calc,
   444    (*asm_thm=asm_thm,*)rules=rules,scr=scr}
   445   | rep_rls (Seq {id,preconds,rew_ord,erls,srls,calc,(*asm_thm,*)rules,scr}) =
   446   {id=id,preconds=preconds,rew_ord=rew_ord,erls=erls,srls=srls,calc=calc,
   447    (*asm_thm=asm_thm,*)rules=rules,scr=scr}
   448   | rep_rls Erls = rep_rls e_rls
   449   | rep_rls (Rrls {id,...})  = rep_rls e_rls
   450     (*raise error("rep_rls doesn't take apart reverse-rewrite-rule-sets: "^id)*);
   451 (*| rep_rls (Seq {id,...})  = 
   452     raise error("rep_rls doesn't take apart reverse-rewrite-rule-sets: "^id);
   453 --1.7.03*)
   454 fun rep_rrls 
   455 	(Rrls {id,(*asm_thm,*) calc, erls, prepat, rew_ord, 
   456 	       scr=Rfuns
   457 		       {attach_form,init_state,locate_rule,
   458 			next_rule,normal_form}}) =
   459     {id=id,(*asm_thm=asm_thm,*) calc=calc, erls=erls, prepat=prepat, 
   460      rew_ord=rew_ord, attach_form=attach_form, init_state=init_state, 
   461      locate_rule=locate_rule, next_rule=next_rule, normal_form=normal_form}
   462   | rep_rrls (Rls {id,...}) = 
   463     raise error ("rep_rrls doesn't take apart (normal) rule-sets: "^id)
   464   | rep_rrls (Seq {id,...}) = 
   465     raise error ("rep_rrls doesn't take apart (normal) rule-sets: "^id);
   466 
   467 fun append_rls id (Rls {id=_,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   468 			rules =rs,scr=sc}) r =
   469     (Rls{id=id,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   470 	 rules = rs @ r,scr=sc}:rls)
   471   | append_rls id (Seq {id=_,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   472 			rules =rs,scr=sc}) r =
   473     (Seq{id=id,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   474 	 rules = rs @ r,scr=sc}:rls)
   475   | append_rls id (Rrls _) _ = 
   476     raise error ("append_rls: not for reverse-rewrite-rule-set "^id);
   477 
   478 (*. are _atomic_ rules equal ?.*)
   479 (*WN080102 compare eqrule ?!?*)
   480 fun eq_rule (Thm (thm1,_), Thm (thm2,_)) = thm1 = thm2
   481   | eq_rule (Calc (id1,_), Calc (id2,_)) = id1 = id2
   482   | eq_rule (Rls_ rls1, Rls_ rls2) = id_rls rls1 = id_rls rls2
   483   (*id_rls checks for Rls, Seq, Rrls*)
   484   | eq_rule _ = false;
   485 
   486 fun merge_rls _ Erls rls = rls
   487   | merge_rls _ rls Erls = rls
   488   | merge_rls id
   489 	(Rls {id=id1,preconds=pc1,rew_ord=ro1,erls=er1,srls=sr1,calc=ca1,
   490 	      (*asm_thm=at1,*)rules =rs1,scr=sc1}) 
   491 	(r2 as Rls {id=id2,preconds=pc2,rew_ord=ro2,erls=er2,srls=sr2,calc=ca2,
   492 	      (*asm_thm=at2,*)rules =rs2,scr=sc2}) =
   493 	(Rls {id=id,preconds=pc1 @ ((#preconds o rep_rls) r2),
   494 	      rew_ord=ro1,erls=merge_rls "" er1 er2(*er1*),
   495 	      srls=merge_rls ("merged_"^id1^"_"^((#id o rep_rls) r2)) sr1 
   496 			     ((#srls o rep_rls) r2),
   497 	      calc=ca1 @ ((#calc o rep_rls) r2),
   498 	      (*asm_thm=at1 @ ((#asm_thm o rep_rls) r2),*)
   499 	      rules = gen_union eq_rule rule2str (rs1, (#rules o rep_rls) r2),
   500 	      scr=sc1}:rls)
   501   | merge_rls id
   502 	(Seq {id=id1,preconds=pc1,rew_ord=ro1,erls=er1,srls=sr1,calc=ca1,
   503 	      (*asm_thm=at1,*)rules =rs1,scr=sc1}) 
   504 	(r2 as Seq {id=id2,preconds=pc2,rew_ord=ro2,erls=er2,srls=sr2,calc=ca2,
   505 	      (*asm_thm=at2,*)rules =rs2,scr=sc2}) =
   506 	(Seq {id=id,preconds=pc1 @ ((#preconds o rep_rls) r2),
   507 	      rew_ord=ro1,erls=merge_rls "" er1 er2(*er1*),
   508 	      srls=merge_rls ("merged_"^id1^"_"^((#id o rep_rls) r2)) sr1 
   509 			     ((#srls o rep_rls) r2),
   510 	      calc=ca1 @ ((#calc o rep_rls) r2),
   511 	      (*asm_thm=at1 @ ((#asm_thm o rep_rls) r2),*)
   512 	      rules = gen_union eq_rule rule2str (rs1, (#rules o rep_rls) r2),
   513 	      scr=sc1}:rls)
   514   | merge_rls _ _ _ = 
   515     raise error "merge_rls: not for reverse-rewrite-rule-sets\
   516 		\and not for mixed Rls -- Seq";
   517 fun remove_rls id (Rls {id=_,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   518 		     (*asm_thm=at,*)rules =rs,scr=sc}) r =
   519     (Rls{id=id,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   520 	 (*asm_thm=at,*)rules = gen_rems eq_rule (rs, r),
   521 	 scr=sc}:rls)
   522   | remove_rls id (Seq {id=_,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   523 		     (*asm_thm=at,*)rules =rs,scr=sc}) r =
   524     (Seq{id=id,preconds=pc,rew_ord=ro,erls=er,srls=sr,calc=ca,
   525 	 (*asm_thm=at,*)rules = gen_rems eq_rule (rs, r),
   526 	 scr=sc}:rls)
   527   | remove_rls id (Rrls _) _ = raise error 
   528                    ("remove_rls: not for reverse-rewrite-rule-set "^id);
   529 
   530 (*!!!> gen_rems (op=) ([1,2,3,4], [3,4,5]);
   531 val it = [1, 2] : int list*)
   532 
   533 (*elder version: migrated 3 calls in smtest to memrls
   534 fun mem_rls id rls = 
   535     case find_first ((curry op=) id) (map id_rule ((#rules o rep_rls) rls)) of
   536 	SOME _ => true | NONE => false;*)
   537 fun memrls r (Rls {rules,...}) = gen_mem eqrule (r, rules)
   538   | memrls r (Seq {rules,...}) = gen_mem eqrule (r, rules)
   539   | memrls r _ = raise error ("memrls: incomplete impl. r= "^(rule2str r));
   540 fun rls_get_thm rls (id: xstring) =
   541     case find_first (curry eq_rule e_rule) 
   542 		    ((#rules o rep_rls) rls) of
   543 	SOME thm => SOME thm | NONE => NONE;
   544 
   545 fun assoc' ([], key) = raise error ("ME_Isa: '"^key^"' not known")
   546   | assoc' ((keyi, xi) :: pairs, key) =
   547       if key = keyi then SOME xi else assoc' (pairs, key);
   548 
   549 (*100818 fun assoc_thy (thy:theory') = ((the o assoc')(!theory',thy))
   550   handle _ => raise error ("ME_Isa: thy '"^thy^"' not in system");*)
   551 fun assoc_thy (thy:theory') = (*FIXME100818 abolish*)
   552     (theory ((implode o (curry takelast 4) o explode) thy))
   553     handle _ => raise error ("ME_Isa: thy '" ^ thy ^ "' not in system");
   554     
   555 (*.associate an rls-identifier with an rls; related to 'fun assoc_rls';
   556    these are NOT compatible to "fun assoc_thm'" in that they do NOT handle
   557    overlays by re-using an identifier in different thys.*)
   558 fun assoc_rls (rls:rls') = ((#2 o the o assoc')(!ruleset',rls))
   559   handle _ => raise error ("ME_Isa: '"^rls^"' not in system");
   560 (*fun assoc_rls (rls:rls') = ((the o assoc')(!ruleset',rls))
   561   handle _ => raise error ("ME_Isa: '"^rls^"' not in system");*)
   562 
   563 (*.overwrite an element in an association list and pair it with a thyID
   564    in order to create the thy_hierarchy;
   565    overwrites existing rls' even if they are defined in a different thy;
   566    this is related to assoc_rls, TODO.WN060120: assoc_rew_ord, assoc_calc;.*)
   567 (*WN060120 ...these are NOT compatible to "fun assoc_thm'" in that 
   568    they do NOT handle overlays by re-using an identifier in different thys;
   569    "thyID.rlsID" would be a good solution, if the "." would be possible
   570    in scripts...
   571    actually a hack to get alltogether run again with minimal effort*)
   572 fun insthy thy' (rls', rls) = (rls', (thy', rls));
   573 fun overwritelthy thy (al, bl:(rls' * rls) list) =
   574     let val bl' = map (insthy ((get_thy o theory2theory') thy)) bl
   575     in overwritel (al, bl') end;
   576 
   577 fun assoc_rew_ord ro = ((the o assoc') (!rew_ord',ro))
   578   handle _ => raise error ("ME_Isa: rew_ord '"^ro^"' not in system");
   579 (*get the string for stac from rule*)
   580 fun assoc_calc ([], key) = raise error ("assoc_calc: '"^ key ^"' not found")
   581   | assoc_calc ((calc, (keyi, xi)) :: pairs, key) =
   582       if key = keyi then calc else assoc_calc (pairs, key);
   583 (*only used for !calclist'...*)
   584 fun assoc1 ([], key) = raise error ("assoc1 (for met.calc=): '"^ key 
   585 				    ^"' not found")
   586   | assoc1 ((all as (keyi, _)) :: pairs, key) =
   587       if key = keyi then all else assoc1 (pairs, key);
   588 
   589 (*TODO.WN080102 clarify usage of type cal and type calc..*)
   590 fun calID2calcID (calID : calID) = 
   591     let fun ass [] = raise error ("calID2calcID: "^calID^"not in calclist'")
   592 	  | ass ((calci, (cali, eval_fn))::ids) =
   593 	    if calID = cali then calci
   594 	    else ass ids
   595     in ass (!calclist') : calcID end;
   596 
   597 fun termopt2str (SOME t) = 
   598     "SOME " ^ (Syntax.string_of_term (thy2ctxt' "Isac") t)
   599   | termopt2str NONE = "NONE";
   600 fun term2str t = Syntax.string_of_term (thy2ctxt' "Isac") t;
   601 fun terms2str ts= (strs2str o (map (Syntax.string_of_term 
   602 					(thy2ctxt' "Isac")))) ts;
   603 fun type2str typ = Syntax.string_of_typ (thy2ctxt' "Isac") typ;
   604 val string_of_typ = type2str;
   605 
   606 fun subst2str (s:subst) = 
   607     (strs2str o 
   608      (map (linefeed o pair2str o
   609 	   (apsnd term2str) o 
   610 	   (apfst term2str)))) s;
   611 fun subst2str' (s:subst) = 
   612     (strs2str' o 
   613      (map (pair2str o
   614 	   (apsnd term2str) o 
   615 	   (apfst term2str)))) s;
   616 (*> subst2str' [(str2term "bdv", str2term "x"),
   617 		(str2term "bdv_2", str2term "y")];
   618 val it = "[(bdv, x)]" : string
   619 *)
   620 val env2str = subst2str;
   621 
   622 
   623 (*recursive defs:*)
   624 fun scr2str (Script s) = "Script "^(term2str s)
   625   | scr2str (Rfuns _)  = "Rfuns";
   626 
   627 
   628 fun maxthy thy1 thy2 = if Theory.subthy (thy1, thy2) then thy2 else thy1;
   629 
   630 
   631 (*.trace internal steps of isac's rewriter*)
   632 val trace_rewrite = ref false;
   633 (*.depth of recursion in traces of the rewriter, if trace_rewrite:=true.*)
   634 val depth = ref 99999;
   635 (*.no of rewrites exceeding this int -> NO rewrite.*)
   636 (*WN060829 still unused...*)
   637 val lim_rewrite = ref 99999;
   638 (*.no of derivation-elements exceeding this int -> SOME derivation-elements.*)
   639 val lim_deriv = ref 100;
   640 (*.switch for checking guhs unique before storing a pbl or met;
   641    set true at startup (done at begin of ROOT.ML)
   642    set false for editing IsacKnowledge (done at end of ROOT.ML).*)
   643 val check_guhs_unique = ref false;
   644 
   645 
   646 datatype lrd = (*elements of a path (=loc_) into an Isabelle term*)
   647 	 L     (*go left at $*) 
   648        | R     (*go right at $*)
   649        | D;     (*go down at Abs*)
   650 type loc_ = lrd list;
   651 fun ldr2str L = "L"
   652   | ldr2str R = "R"
   653   | ldr2str D = "D";
   654 fun loc_2str (k:loc_) = (strs2str' o (map ldr2str)) k;
   655