test/Tools/isac/Test_Isac_Short.thy
author Walther Neuper <walther.neuper@jku.at>
Tue, 17 Sep 2019 09:01:03 +0200
changeset 59624 eb29ccf2da34
parent 59623 d8abf213ce3c
child 59626 7b53f514b5e9
permissions -rw-r--r--
tuned
     1 (* Title:  All tests on isac (some outcommented since Isabelle2002-->2009-2)
     2    Author: Walther Neuper 101001
     3    (c) copyright due to license terms.
     4 
     5    Isac's tests are organised parallel to sources: 
     6      "~~/test/Tools/isac" has same directory structure as "~~/src/Tools/isac"
     7    plus
     8      ~~/test/Tools/isac/ADDTESTS
     9      ~~/test/Tools/isac/Minisubpbl: the Lucas-Interpreter's core functionality
    10 *)
    11 
    12 section \<open>Notes on running tests\<close>
    13 subsection \<open>Switch between running tests and updating code\<close>
    14 text \<open>
    15   Isac encapsulates code as much as possible in structures without open.
    16   This policy conflicts with those tests, which go into functions to details
    17   not declared in the signatures.
    18   
    19   In order to maintain these tests without changes, this has to be done before running tests:
    20   (1) Extend signatures for tests by
    21       ~~$ ./xcoding-to-test.sh
    22       ~~$ ./zcoding-to-test.sh  # --"-- + go back to Test_Isac.thy
    23       Running Test_Isac.thy opens all structures, see code after "begin" below.
    24   (2) Clean signatures for coding
    25       ~~$ ./xtest-to-coding.sh
    26       ~~$ ./ztest-to-coding.sh  # --"-- + go back to coding (!update thy!)
    27 
    28 ********************* don't forget (2) BEFORE pushing to repository ****************************
    29 \<close>
    30 subsection \<open>Decide between running Test_Isac_Short.thy and Test_Isac.thy\<close>
    31 text \<open>
    32   Some tests raise exception Size raised (line 171 of "./basis/LibrarySupport.sml")
    33   if run in x86_64_32 mode of Poly/ML 5.8 (which is set as default).
    34   This exception can be avoided by ML_system_64 = "true" in ~~/etc/preferences.
    35   These preferences have drawbacks, however:
    36   * they claim more memory such that Isabelle instances canNOT run in parallel.
    37   * they do NOT reach Build_Isac.thy hanging in Build_Thydata.thy, see there.
    38 
    39   So default for Build_Isac.thy and for general testing is Test_Isac_Short.thy is x86_64_32 mode.
    40   From time to time full testing in Test_Isac.thy is recommended. For that purpose
    41   * set ML_system_64 = "true"
    42 
    43 ********************* don't forget to re-set defaults BEFORE updating code *********************
    44 
    45     Note that Isabelle/jEdit re-generates the preferences file on shutdown, thus always
    46     ******* edit etc/preferences by use of gedit ******* 
    47 \<close>
    48 
    49 section \<open>code for copy & paste\<close>
    50 text \<open>
    51 "~~~~~ fun , args:"; val () = ();
    52 "~~~~~ and , args:"; val () = ();
    53 "~~~~~ from xxx to yyy return val:"; val ((*yyy*)) = ((*xxx*));
    54 
    55 \<close>
    56 section \<open>Run the tests\<close>
    57 text \<open>
    58 * say "OK" to the popup asking for theories to be loaded
    59 * watch the <Theories> window for errors in the "imports" below
    60 \<close>
    61 
    62 theory Test_Isac_Short
    63   imports Isac.Build_Isac (* note that imports are WITHOUT open struct ..*)
    64 (*/---------------------- do Minisubpbl before ADDTESTS/All_Ctxt ------------------------------\*)
    65   "ADDTESTS/accumulate-val/Thy_All"
    66   "ADDTESTS/Ctxt"
    67   "ADDTESTS/test-depend/Build_Test"
    68   "ADDTESTS/All_Ctxt"
    69   "ADDTESTS/Test_Units"
    70   "ADDTESTS/course/phst11/T1_Basics"
    71   "ADDTESTS/course/phst11/T2_Rewriting"
    72   "ADDTESTS/course/phst11/T3_MathEngine"
    73   "ADDTESTS/file-depend/BuildC_Test"
    74   "ADDTESTS/session-get_theory/Foo"
    75 (*"ADDTESTS/course/SignalProcess/Build_Inverse_Z_Transform"
    76    ADDTESTS/------------------------------------------- see end of tests *)
    77 (*"~~/test/Pure/Isar/Test_Parsers"           dropped Isabelle2014-->2015 *)
    78 (*"~~/test/Pure/Isar/Pure/Isar/Struct_Deriv" lost at update 2009-2-->2011*)
    79   "~~/test/Pure/Isar/Test_Parse_Term"
    80 (*/---------------------- do Minisubpbl before ADDTESTS/All_Ctxt ------------------------------\*)
    81   "~~/test/Tools/isac/Interpret/ptyps"       (* setup for ptyps.sml    *)
    82   "~~/test/Tools/isac/ProgLang/calculate"    (* setup for calculate.sml*)
    83 
    84 
    85 
    86   "~~/test/Tools/isac/ProgLang/scrtools"     (* setup for scrtools.sml *)
    87   "~~/test/Tools/isac/Knowledge/integrate"   (* setup for integrate.sml*)
    88 (*\---------------------- do Minisubpbl before ADDTESTS/All_Ctxt ------------------------------/*)
    89 (*"~~/src/Tools/isac/Knowledge/GCD_Poly_OLD" (*not imported by Isac.thy*)        Test_Isac_Short*)
    90 (*"~~/src/Tools/isac/Knowledge/GCD_Poly_FP"  (*not imported by Isac.thy*)        Test_Isac_Short*)
    91 (*\---------------------- do Minisubpbl before ADDTESTS/All_Ctxt ------------------------------/*)
    92 
    93 begin
    94 
    95 ML \<open>
    96 (*/-------------------------------------------------------- ! aktivate for Test_Isac BEGIN ---\*)
    97                       (* these vvv test, if funs are intermediately opened in structure 
    98                          in case of errors here consider ~~/./xtest-to-coding.sh      *)
    99   open Kernel;
   100   open Math_Engine;            CalcTreeTEST;
   101   open Lucin;                  itms2args;
   102   open LucinNEW;               appy;
   103   open Istate;
   104   open Inform;                 cas_input;
   105   open Rtools;                 trtas2str;
   106   open Chead;                  pt_extract;
   107   open Generate;               (* NONE *)
   108   open Ctree;                  append_problem;
   109   open Program;
   110   open Prog_Tac;
   111   open Tactical;
   112   open Prog_Expr;
   113   open Auto_Prog;              rule2stac;
   114   open Input_Descript;
   115   open Specify;                show_ptyps;
   116   open Applicable;             mk_set;
   117   open Solve;                  (* NONE *)
   118   open Selem;                  e_fmz;
   119   open Stool;                  (* NONE *)
   120   open ContextC;               transfer_asms_from_to;
   121   open Tactic;                 (* NONE *)
   122   open Model;                  (* NONE *)
   123   open Rewrite;                mk_thm;
   124   open Calc;                   get_pair;
   125   open TermC;                  atomt;
   126   open Celem;                  e_pbt;
   127   open Rule;                   string_of_thm;
   128 (*\--- ! aktivate for Test_Isac END ----------------------------------------------------------/*)
   129 \<close>
   130 
   131 ML \<open>
   132 "~~~~~ fun xxx, args:"; val () = ();
   133 \<close> ML \<open>
   134 \<close> ML \<open>
   135 \<close>
   136 
   137 ML \<open>
   138   KEStore_Elems.set_ref_thy @{theory};
   139   (*fun autoCalculate' cI auto = autoCalculate cI auto (*|> Future.join*)*);
   140 \<close>
   141 
   142 (*---------------------- check test file by testfile -------------------------------------------
   143   ---------------------- check test file by testfile -------------------------------------------*)
   144 section \<open>trials with Isabelle's functions\<close>
   145   ML \<open>"%%%%%%%%%%%%%%%%% start Isabelle %%%%%%%%%%%%%%%%%%%%%%%";\<close>
   146   ML_file "~~/test/Pure/General/alist.ML"
   147   ML_file "~~/test/Pure/General/basics.ML"
   148   ML_file "~~/test/Pure/General/scan.ML"
   149   ML_file "~~/test/Pure/PIDE/xml.ML"
   150   ML \<open>"%%%%%%%%%%%%%%%%% end Isabelle %%%%%%%%%%%%%%%%%%%%%%%%%";\<close>
   151 
   152 section \<open>test ML Code of isac\<close>
   153 subsection \<open>basic code first\<close>
   154   ML \<open>"%%%%%%%%%%%%%%%%% start ProgLang.thy %%%%%%%%%%%%%%%%%%%";\<close>
   155   ML_file "CalcElements/libraryC.sml"
   156   ML_file "CalcElements/calcelems.sml"
   157 (*---------------------- do Minisubpbl before ADDTESTS/All_Ctxt --------------------------------
   158   ---------------------- do Minisubpbl before ADDTESTS/All_Ctxt --------------------------------*)
   159   ML_file "CalcElements/kestore.sml"        (* setup in ADDTEST/accumulate-val/lucas_interpreter.sml*)
   160   ML_file "CalcElements/termC.sml"
   161   ML_file "CalcElements/listC.sml"
   162   ML_file "CalcElements/contextC.sml"
   163   ML_file "ProgLang/calculate.sml"      (* requires setup from calculate.thy                    *)
   164   ML_file "ProgLang/rewrite.sml"
   165   ML_file "ProgLang/scrtools.sml"
   166   ML_file "ProgLang/tools.sml"
   167 (*---------------------- do Minisubpbl before ADDTESTS/All_Ctxt --------------------------------
   168   ---------------------- do Minisubpbl before ADDTESTS/All_Ctxt --------------------------------*)
   169 
   170 subsection \<open>basic functionality on simple example first\<close>
   171   ML_file "Minisubpbl/000-comments.sml"
   172   ML_file "Minisubpbl/100-init-rootpbl.sml"
   173   ML_file "Minisubpbl/150-add-given.sml"
   174   ML_file "Minisubpbl/200-start-method.sml"
   175   ML_file "Minisubpbl/250-Rewrite_Set-from-method.sml"
   176   ML_file "Minisubpbl/300-init-subpbl.sml"
   177   ML_file "Minisubpbl/400-start-meth-subpbl.sml"
   178   ML_file "Minisubpbl/450-Rewrite_Set_Inst.sml"
   179   ML_file "Minisubpbl/490-nxt-Check_Postcond.sml"
   180   ML_file "Minisubpbl/500-met-sub-to-root.sml"
   181   ML_file "Minisubpbl/530-error-Check_Elementwise.sml"
   182   ML_file "Minisubpbl/600-postcond.sml"
   183   ML_file "Minisubpbl/700-interSteps.sml"
   184   ML_file "Minisubpbl/799-complete.sml"
   185 
   186 subsection \<open>further functionality alongside batch build sequence\<close>
   187   ML_file "Specify/mstools.sml"
   188   ML_file "Specify/specification-elems.sml"
   189   ML_file "Specify/ctree.sml"         (*!...!see(25)*)
   190   ML_file "Specify/ptyps.sml"         (* requires setup from ptyps.thy *)
   191   ML \<open>(*check_unsynchronized_ref (); ==== trick on error: CUT AND PASTE THIS LINE =========*)\<close>
   192   ML_file "Specify/generate.sml"
   193   ML_file "Specify/calchead.sml"
   194   ML_file "Specify/appl.sml"          (*complete "WEGEN INTERMED TESTCODE"   *)
   195 
   196   ML_file "Interpret/rewtools.sml"
   197   ML_file "Interpret/script.sml"
   198   ML_file "Interpret/inform.sml"
   199   ML_file "Interpret/lucas-interpreter.sml"
   200 
   201   ML_file "MathEngine/solve.sml"
   202   ML_file "MathEngine/mathengine-stateless.sml"    (*!part. WN130804: +check Interpret/me.sml*)
   203   ML_file "MathEngine/messages.sml"
   204   ML_file "MathEngine/states.sml"
   205 
   206   ML_file "BridgeLibisabelle/mathml.sml"           (*part.*)
   207   ML_file "BridgeLibisabelle/datatypes.sml"        (*TODO/part.*)
   208   ML_file "BridgeLibisabelle/pbl-met-hierarchy.sml"(*TODO after 2009-2/part.*)
   209   ML_file "BridgeLibisabelle/thy-hierarchy.sml"
   210   ML_file "BridgeLibisabelle/interface-xml.sml"     (*TODO after 2009-2*)
   211   ML_file "BridgeLibisabelle/interface.sml"
   212 (*WITHOUT inhibit exn WN1130621 Isabelle2012-->13 !thehier! THIS ERROR OCCURS:
   213   ... SAME ERROR HERE ON ISABELLE2012 AS IN ISAC ON ISABELLE2011*)
   214 
   215   ML_file "Knowledge/delete.sml"
   216   ML_file "Knowledge/descript.sml"
   217   ML_file "Knowledge/atools.sml"
   218   ML_file "Knowledge/simplify.sml"
   219   ML_file "Knowledge/poly.sml"
   220   ML_file "Knowledge/gcd_poly_ml.sml"
   221   ML_file "Knowledge/gcd_poly_winkler.sml" (*must be after gcd_poly_ml.sml: redefines functions*)
   222 (*ML_file "Knowledge/rational.sml"                                              Test_Isac_Short*)
   223   ML_file "Knowledge/equation.sml"
   224   ML_file "Knowledge/root.sml"
   225   ML_file "Knowledge/lineq.sml"
   226 (*ML_file "Knowledge/rooteq.sml"    some complicated equations not recovered from 2002 *)
   227 (*ML_file "Knowledge/rateq.sml"     some complicated.eq...     exception Size---Test_Isac_Short*)
   228   ML_file "Knowledge/rootrat.sml"
   229   ML_file "Knowledge/rootrateq.sml"(*ome complicated equations not recovered from 2002 *)
   230 (*ML_file "Knowledge/partial_fractions.sml"                    exception Size---Test_Isac_Short*)
   231 (*ML_file "Knowledge/polyeq.sml"                               exception Size---Test_Isac_Short*)
   232 (*ML_file "Knowledge/rlang.sml"     much to clean up, similar tests in other files     *)
   233   ML_file "Knowledge/calculus.sml"
   234   ML_file "Knowledge/trig.sml"
   235 (*ML_file "Knowledge/logexp.sml"    not included as stuff for presentation of authoring*) 
   236   ML_file "Knowledge/diff.sml"
   237   ML_file "Knowledge/integrate.sml"
   238   ML_file "Knowledge/eqsystem.sml"
   239   ML_file "Knowledge/test.sml"
   240   ML_file "Knowledge/polyminus.sml"
   241   ML_file "Knowledge/vect.sml"
   242   ML_file "Knowledge/diffapp.sml"        (* postponed to dev. specification | TP-prog. *)
   243   ML_file "Knowledge/biegelinie-1.sml"
   244 (*ML_file "Knowledge/biegelinie-2.sml"        TODO             exception Size---Test_Isac_Short*)
   245   ML_file "Knowledge/biegelinie-3.sml"     (* TODO             exception Size---Test_Isac_Short*)
   246   ML_file "Knowledge/algein.sml"
   247   ML_file "Knowledge/diophanteq.sml"
   248 (*ML_file "Knowledge/inverse_z_transform.sml"                  exception Size---Test_Isac_Short*)
   249   ML_file "Knowledge/inssort.sml"
   250   ML_file "Knowledge/isac.sml"
   251   ML_file "Knowledge/build_thydata.sml"
   252 
   253 section \<open>further tests additional to src/.. files\<close>
   254   ML_file "BridgeLibisabelle/use-cases.sml"
   255   ML_file "~~/test/Tools/isac/ADDTESTS/libisabelle/mini-test.sml"
   256   ML_file "~~/test/Tools/isac/ADDTESTS/libisabelle/protocol.sml"
   257 
   258   ML \<open>"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%";\<close>
   259   ML \<open>"%%%%%%%%%%%%%%%%% end Test_Isac %%%%%%%%%%%%%%%%%%%%%%%%";\<close>
   260   ML \<open>"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%";\<close>
   261 ML \<open>
   262 \<close> ML \<open>
   263 \<close> ML \<open>
   264 \<close>
   265 
   266 section \<open>history of tests\<close>
   267 text \<open>
   268   Systematic regression tests have been introduced to isac development in 2003.
   269   Sanity of the regression tests suffers from updates following Isabelle development,
   270   which mostly exceeded the resources available in isac's development.
   271 
   272   The survey below shall support to efficiently use the tests for isac 
   273   on different Isabelle versions. Conclusion in most cases will be: 
   274 
   275   !!! Use most recent tests or go back to the old notebook
   276       with isac on Isabelle2002. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   277 \<close>
   278 
   279 
   280 subsection \<open>isac on Isabelle2017\<close>
   281 subsubsection \<open>Summary of development\<close>
   282 text \<open>
   283   * Add further signatures, separate structures and cleanup respective files.
   284   * Show feasibility of moving Isac programs to partial_function, i.e. to the function package.
   285   * Clean theory dependencies.
   286   * Start preparing shift from isac-java to Isabelle/jEdit.
   287 \<close>
   288 subsubsection \<open>State of tests: unchanged\<close>
   289 subsubsection \<open>Changesets of begin and end\<close>
   290 text \<open>
   291   last changeset with Test_Isac 925fef0f4c81
   292   first changeset with Test_Isac bbb414976dfe
   293 \<close>
   294 
   295 subsection \<open>isac on Isabelle2015\<close>
   296 subsubsection \<open>Summary of development\<close>
   297 text \<open>
   298   * Add signatures from top of thy-hierarchy down to Interpret (not ProgLang).
   299     This complicates Test_Isac, see "Prepare running tests" above.
   300   * Remove TTY interface.
   301   * Re-activate insertion sort.
   302 \<close>
   303 subsubsection \<open>State of tests: unchanged\<close>
   304 subsubsection \<open>Changesets of begin and end\<close>
   305 text \<open>
   306   last changeset with Test_Isac 2f1b2854927a
   307   first changeset with Test_Isac ???
   308 \<close>
   309 
   310 subsection \<open>isac on Isabelle2014\<close>
   311 subsubsection \<open>Summary of development\<close>
   312 text \<open>
   313   migration from "isabelle tty" --> libisabelle
   314 \<close>
   315 
   316 subsection \<open>isac on Isabelle2013-2\<close>
   317 subsubsection \<open>Summary of development\<close>
   318 text \<open>
   319   reactivated context_thy
   320 \<close>
   321 subsubsection \<open>State of tests\<close>
   322 text \<open>
   323   TODO
   324 \<close>
   325 subsubsection \<open>Changesets of begin and end\<close>
   326 text \<open>
   327   TODO
   328   :
   329   : isac on Isablle2013-2
   330   :
   331   Changeset: 55318 (03826ceb24da) merged
   332   User: Walther Neuper <neuper@ist.tugraz.at>
   333   Date: 2013-12-12 14:27:37 +0100 (7 minutes)
   334 \<close>
   335 
   336 subsection \<open>isac on Isabelle2013-1\<close>
   337 subsubsection \<open>Summary of development\<close>
   338 text \<open>
   339   Isabelle2013-1 was replaced within a few weeks due to problems with the document model;
   340   no significant development steps for ISAC.
   341 \<close>
   342 subsubsection \<open>State of tests\<close>
   343 text \<open>
   344   See points in subsection "isac on Isabelle2011", "State of tests".
   345 \<close>
   346 subsubsection \<open>Changesets of begin and end\<close>
   347 text \<open>
   348   Changeset: 55283 (d6e9a34e7142) notes for resuming work on Polynomial.thy
   349   User: Walther Neuper <neuper@ist.tugraz.at>
   350   Date: 2013-12-03 18:13:31 +0100 (8 days)
   351   :
   352   : isac on Isablle2013-1
   353   :
   354   Changeset: 55279 (130688f277ba) Isabelle2013 --> 2013-1: Test_Isac perfect
   355   User: Walther Neuper <neuper@ist.tugraz.at>
   356   Date: 2013-11-21 18:12:17 +0100 (2 weeks)
   357 
   358 \<close>
   359 
   360 subsection \<open>isac on Isabelle2013\<close>
   361 subsubsection \<open>Summary of development\<close>
   362 text \<open>
   363   # Oct.13: replaced "axioms" by "axiomatization"
   364   # Oct.13: Mathias Lehnfeld started removing Unsynchornized.ref
   365   # Sep.13: integrated gcd_poly (functional, without Unsychronized.ref) into
   366     simplification of multivariate rationals (without improving the rulesets involved).
   367 \<close>
   368 subsubsection \<open>Run tests\<close>
   369 text \<open>
   370   Is standard now; this subsection will be discontinued under Isabelle2013-1
   371 \<close>
   372 subsubsection \<open>State of tests\<close>
   373 text \<open>
   374   See points in subsection "isac on Isabelle2011", "State of tests".
   375   # re-activated listC.sml
   376 \<close>
   377 subsubsection \<open>Changesets of begin and end\<close>
   378 text \<open>
   379   changeset 52174:8b055b17bd84 --- removed all code concerned with "castab = Unsynchronized.ref"
   380   User: Mathias Lehnfeld <s1210629013@students.fh-hagenberg.at>
   381   Date: Tue Nov 19 22:23:30 2013 +0000
   382   :
   383   : isac on Isablle2013 
   384   :
   385   Changeset: 52061 (4ecea2fcdc2c) --- Build_Isac.thy runs on Isabelle2013
   386   User: Walther Neuper <neuper@ist.tugraz.at>
   387   Date: 2013-07-15 08:28:50 +0200 (4 weeks)
   388 \<close>
   389 
   390 subsection \<open>isac on Isabelle2012\<close>
   391 subsubsection \<open>Summary of development\<close>
   392 text \<open>
   393   isac on Isabelle2012 is considered just a transitional stage
   394   within the update from Isabelle2011 to Isabelle2013; thus no further development of isac;
   395   For considerations on the transition see 
   396   ~~/src/Tools/isac/Knowledge/Build_Thydata/thy, section "updating isac..".
   397 \<close>
   398 subsubsection \<open>Run tests\<close>
   399 text \<open>
   400 $ cd /usr/local/isabisac12/
   401 $ ./bin/isabelle jedit -l HOL src/Tools/isac/Build_Isac.thy
   402 $ ./bin/isabelle jedit -l Isac test/Tools/isac/Test_Isac.thy
   403 \<close>
   404 subsubsection \<open>State of tests\<close>
   405 text \<open>
   406   At least the tests from isac on Isabelle2011 run again.
   407   However, Test_Isac.thy shows erratic behaviour; no errors are obtained when scrolling 
   408   in parallel with evaluation.
   409 
   410   Counting "error in kernel" for Frontend/interface.sml (the tests considered most significant)
   411   yields 69 hits, some of which were already present before Isabelle2002-->2009-2
   412   (i.e. on the old notebook from 2002).
   413 
   414   Now many tests with (*...=== inhibit exn ...*) give a reason or at least the origin:
   415   # === inhibit exn WN1130621 Isabelle2012-->13 !thehier! === ...see Build_Thydata.thy
   416   # === inhibit exn AK110726 === ...reliable work by Alexander Kargl, most likely go back to 2002
   417   # === inhibit exn WN1130701 broken at Isabelle2002 --> 2009-2 === , most likely go back to 2002
   418   Reasons for outcommented tests are also found in Test_Isac.thy near the respective file.sml.
   419 
   420   Some tests have been re-activated (e.g. error patterns, fill patterns).
   421 \<close>
   422 subsubsection \<open>Changesets of begin and end\<close>
   423 text \<open>
   424   Changeset: 52051 (35751d90365e) end of improving tests for isac on Isabelle2012
   425   User: Walther Neuper <neuper@ist.tugraz.at>
   426   Date: 2013-07-11 16:58:31 +0200 (4 weeks)
   427   :
   428   : isac on Isablle2012 
   429   :
   430   Changeset: 48757 (74eb3dfc33cc) updated src from Isabelle2011 to Isabelle2012
   431   User: Walther Neuper <neuper@ist.tugraz.at>
   432   Date: 2012-09-24 18:35:13 +0200 (8 months)
   433   ------------------------------------------------------------------------------
   434   Changeset: 48756 (7443906996a8) merged
   435   User: Walther Neuper <neuper@ist.tugraz.at>
   436   Date: 2012-09-24 18:15:49 +0200 (8 months)
   437 \<close>
   438 
   439 subsection \<open>isac on Isabelle2011\<close>
   440 subsubsection \<open>Summary of development\<close>
   441 text \<open>
   442   isac's mathematics engine has been extended by two developments:
   443   (1) Isabelle's contexts were introduced by Mathias Lehnfeld
   444   (2) Z_Transform was introduced by Jan Rocnik, which revealed
   445     further errors introduced by (1).
   446   (3) "error patterns" were introduced by Gabriella Daroczy
   447   Regressions tests have been added for all of these.
   448 \<close>
   449 subsubsection \<open>Run tests\<close>
   450 text \<open>
   451   $ cd /usr/local/isabisac11/
   452   $ ./bin/isabelle jedit -l HOL src/Tools/isac/Build_Isac.thy
   453   $ ./bin/isabelle jedit -l Isac test/Tools/isac/Test_Isac.thy
   454 \<close>
   455 subsubsection \<open>State of tests\<close>
   456 text \<open>
   457   Systematic efforts outcommented less significant tests by (*...=== inhibit exn ...*) 
   458   and sometimes give reasons for failing tests.
   459   (*...=== inhibit exn AK...*) was done by Alexander Kargl; this is reliable
   460   work, some of which couldn't be revised (and renamed) by WN and thus survived some time.
   461 
   462   The most signification tests (in particular Frontend/interface.sml) run,
   463   however, many "error in kernel" are not caught by an exception.
   464   ------------------------------------------------------------------------------
   465   After the changeset below Test_Isac worked with check_unsynchronized_ref ():
   466   ------------------------------------------------------------------------------
   467   Changeset: 42457 (ca691a84b81a) PROVISIONALLY MADE TESTS RUN with Unsynchronized.ref
   468   User: Walther Neuper <neuper@ist.tugraz.at>
   469   Date: 2012-08-06 10:38:11 +0200 (11 months)
   470 
   471 
   472   The list below records TODOs while producing an ISAC kernel for 
   473   gdaroczy and jrocnik, wich could NOT be done before all tests are RUNNING
   474   (so to be resumed with Isabelle2013-1):
   475   ############## WNxxxxxx.TODO can be found in sources ##############
   476   --------------------------------------------------------------------------------
   477   WN111013.TODO: lots of cleanup/removal in test/../Test.thy
   478   --------------------------------------------------------------------------------
   479   WN111013.TODO: remove concept around "fun init_form", lots of troubles with 
   480   this special case (see) --- why not nxt = Model_Problem here ? ---
   481   --------------------------------------------------------------------------------
   482   WN111014.TODO calculate_Poly < calculate_Rational < calculate_RootRat, see test/
   483   ... FIRST redesign 
   484   # simplify_* , *_simp_* 
   485   # norm_* 
   486   # calc_* , calculate_*  ... require iteration over all rls ...
   487   ... see --- val rls = calculate_RootRat > calculate_Rational --- CONTINUE !
   488   --------------------------------------------------------------------------------
   489   WN111014.TODO fun prep_rls | !!!use this function in ruleset' := !!!
   490   --------------------------------------------------------------------------------
   491   WN120314 changeset a393bb9f5e9f drops root equations.
   492   see test/Tools/isac/Knowledge/rootrateq.sml 
   493   --------------------------------------------------------------------------------
   494   WN120317.TODO changeset 977788dfed26 dropped rateq:
   495   # test --- repair NO asms from rls RatEq_eliminate --- shows error from 2002
   496   # test --- solve (1/x = 5, x) by me --- and --- x / (x ^ 2 - 6 * x + 9) - ...:    
   497     investigation Check_elementwise stopped due to too much effort finding out,
   498     why Check_elementwise worked in 2002 in spite of the error.
   499   --------------------------------------------------------------------------------
   500   WN120317.TODO postponed test/../ratinal,ratinal2.sml to joint work with dmeindl 
   501   --------------------------------------------------------------------------------
   502   WN120317.TODO found by test --- interSteps for Schalk 299a --- that 
   503     NO test with 'interSteps' is checked properly (with exn on changed behaviour)
   504   --------------------------------------------------------------------------------
   505   WN120317.TODO test --- Matthias Goldgruber 2003 rewrite orders --- has
   506     a newly outcommented test where rewrite_set_ make_polynomial --> NONE
   507   --------------------------------------------------------------------------------
   508   WN120320.TODO check-improve rlsthmsNOTisac:
   509   DONE make test --- old compute rlsthmsNOTisac by eq_thmI'
   510   DONE compare rlsthmsNOTisac in thms-survey-Isa02-Isa09-2.sml .. Isac.thy 
   511   FOUND 120321: Theory.axioms_of doesnt find LENGTH_CONS etc, thus are in Isab
   512   # mark twice thms (in isac + (later) in Isabelle) in Isac.thy
   513   --------------------------------------------------------------------------------
   514   WN120320.TODO rlsthmsNOTisac: replace twice thms ^
   515   --------------------------------------------------------------------------------
   516   WN120320.TODO rlsthmsNOTisac: reconsider design of sym_* thms, see test
   517   --- OLD compute rlsthmsNOTisac by eq_thmID ---: some are in isab, some in isac.
   518   --------------------------------------------------------------------------------
   519   WN120321.TODO rearrange theories:
   520     Knowledge
   521       :
   522       Prog_Expr.thy
   523       ///Descript.thy --> ProgLang
   524       Delete.thy   <--- first_Knowledge_thy (*mv to Prog_Expr.thy*)
   525     ProgLang: restructure Build_Isac.thy such that no xmlsrc.thy, ProgLang.thy
   526           Interpret.thy are generated (simplifies xml structure for theories)
   527       Program.thy
   528       Tools.thy
   529       ListC.thy    <--- first_Proglang_thy
   530   --------------------------------------------------------------------------------
   531   WN120321.TODO reanimate test/../simplify.sml: CAS-command Simplify
   532       EXN "simplify.sml: diff.behav. CAScmd: Simplify (2*a + 3*a)"
   533   broken during work on thy-hierarchy
   534   --------------------------------------------------------------------------------
   535   WN120321.TODO LAST in IsacScripts + in IsacKnowledge, see
   536   test --- the_hier (get_thes ()) (collect_thydata ())---
   537   --------------------------------------------------------------------------------
   538   WN120405a.TODO src/../pbl-met-hierarchy.sml: fun pbl2term--> Isac' instead Isac_
   539   !!add mutual crossreferences to ?fun headline??? where the same has to be done:
   540   !!OR BETTER: use only 2 functions for adding/removing "'" to/from thy!!
   541   --------------------------------------------------------------------------------
   542   WN120409.TODO replace "op mem" (2002) with member (2011) ... 
   543   ... an exercise interesting for beginners !
   544   --------------------------------------------------------------------------------
   545   WN120411 scanning html representation of newly generated knowledge:
   546   * thy:
   547   ** Theorems: only "Proof of the theorem" (correct!)
   548                and "(c) isac-team (math-autor)"
   549   ** Rulesets: only "Identifier:///"
   550                and "(c) isac-team (math-autor)"
   551   ** IsacKnowledge: link to dependency graph (which needs to be created first)
   552   ** IsacScripts --> ProgramLanguage
   553   *** Tools: Theorems: arity_type_cp, arity_type_nam, ... wegnehmen
   554   
   555   * pbl: OK !?!
   556   * met: OK !?!
   557   * exp: 
   558   ** Z-Transform is missing !!!
   559   ** type-constraints !!!
   560   --------------------------------------------------------------------------------
   561   WN120417: merging xmldata revealed:
   562   ..............NEWLY generated:........................................
   563   <THEOREMDATA>
   564     <GUH> thy_isab_Fun-thm-o_apply </GUH>
   565     <STRINGLIST>
   566       <STRING> Isabelle </STRING>
   567       <STRING> Fun </STRING>
   568       <STRING> Theorems </STRING>
   569       <STRING> o_apply </STRING>
   570     </STRINGLIST>
   571       <MATHML>
   572         <ISA> (?f o ?g) ?x = ?f (?g ?x) </ISA>
   573       </MATHML>  <PROOF>
   574       <EXTREF>
   575         <TEXT> Proof of the theorem </TEXT>
   576         <URL> http://www.ist.tugraz.at/projects/isac/www/kbase/thy/browser_info/HOL/HOL-Real/Isac/Fun.html </URL>
   577       </EXTREF>
   578     </PROOF>
   579     <EXPLANATIONS> </EXPLANATIONS>
   580     <MATHAUTHORS>
   581       <STRING> Isabelle team, TU Munich </STRING>
   582     </MATHAUTHORS>
   583     <COURSEDESIGNS>
   584     </COURSEDESIGNS>
   585   </THEOREMDATA>
   586   ..............OLD FORMAT:.............................................
   587   <THEOREMDATA>
   588     <GUH> thy_isab_Fun-thm-o_apply </GUH>
   589     <STRINGLIST>
   590       <STRING> Isabelle </STRING>
   591       <STRING> Fun </STRING>
   592       <STRING> Theorems </STRING>
   593       <STRING> o_apply </STRING>
   594     </STRINGLIST>
   595     <THEOREM>
   596       <ID> o_apply </ID>
   597       <MATHML>
   598         <ISA> (?f o ?g) ?x = ?f (?g ?x) </ISA>
   599       </MATHML>
   600     </THEOREM>
   601     <PROOF>
   602       <EXTREF>
   603         <TEXT> Proof of the theorem </TEXT>
   604         <URL> http://www.ist.tugraz.at/projects/isac/www/kbase/thy/browser_info/HOL/HOL-Real/Isac/Fun.html </URL>
   605       </EXTREF>
   606     </PROOF>
   607     <EXPLANATIONS> </EXPLANATIONS>
   608     <MATHAUTHORS>
   609       <STRING> Isabelle team, TU Munich </STRING>
   610     </MATHAUTHORS>
   611     <COURSEDESIGNS>
   612     </COURSEDESIGNS>
   613   </THEOREMDATA>
   614   --------------------------------------------------------------------------------
   615 \<close>
   616 subsubsection \<open>Changesets of begin and end\<close>
   617 text \<open>
   618   isac development was done between these changesets:
   619   ------------------------------------------------------------------------------
   620   Changeset: 42519 (1f3b4270363e) meeting dmeindl: added missing files
   621   User: Walther Neuper <neuper@ist.tugraz.at>
   622   Date: 2012-09-24 16:39:30 +0200 (8 months)
   623   :
   624   : isac on Isablle2011
   625   :
   626   Changeset:41897 (355be7f60389) merged isabisac with Isabelle2011
   627   Branch: decompose-isar 
   628   User: Walther Neuper <neuper@ist.tugraz.at>
   629   Date: 2011-02-25 13:04:56 +0100 (2011-02-25)
   630   ------------------------------------------------------------------------------
   631 \<close>
   632 
   633 subsection \<open>isac on Isabelle2009-2\<close>
   634 subsubsection \<open>Summary of development\<close>
   635 text \<open>
   636   In 2009 the update of isac from Isabelle2002 started with switching from CVS to hg.
   637   The update was painful (bridging 7 years of Isabelle development) and cut short 
   638   due to the start of introducing Isabelle's contexts (Mathias Lehnfeld) and
   639   going on to Isabelle2011 although most of the tests did not run.
   640 \<close>
   641 subsubsection \<open>Run tests\<close>
   642 text \<open>
   643   WN131021 this is broken by installation of Isabelle2011/12/13,
   644   because all these write their binaries to ~/.isabelle/heaps/..
   645 
   646   $ cd /usr/local/isabisac09-2/
   647   $ ./bin/isabelle emacs -l HOL src/Tools/isac/Build_Isac.thy
   648   $ ./bin/isabelle emacs -l Isac src/Tools/isac/Test_Isac.thy
   649   NOT THE RIGHT VERSION.....    test/Tools/isac/Test_Isac.thy !!!
   650 \<close>
   651 subsubsection \<open>State of tests\<close>
   652 text \<open>
   653   Most tests are broken by the update from Isabelle2002 to Isabelle2009-2.
   654 \<close>
   655 subsubsection \<open>Changesets of begin and end\<close>
   656 text \<open>
   657   isac development was done between these changesets:
   658   ------------------------------------------------------------------------------
   659   Changeset: 38115 (940a5feea094) Little improvements of isac-plugin
   660   Branch: decompose-isar 
   661   User: Marco Steger <m.steger@student.tugraz.at>
   662   Date: 2011-02-06 18:30:28 +0100 (2011-02-06)
   663   :
   664   : isac on Isablle2009-2
   665   :
   666   Changeset: 37870 (5100a9c3abf8) created branch isac-from-Isabelle2009-2
   667   Branch: isac-from-Isabelle2009-2 
   668   User: Walther Neuper <neuper@ist.tugraz.at>
   669   Date: 2010-07-21 09:59:35 +0200 (2010-07-21)
   670   ------------------------------------------------------------------------------
   671 \<close>
   672 
   673 subsection \<open>isac on Isabelle2002\<close>
   674 subsubsection \<open>Summary of development\<close>
   675 text \<open>
   676   From 1999 to 2010 all the basic functionality (except "ctxt" and "error pattern")
   677   of isac's mathematics engine has been implemented.
   678 \<close>
   679 subsubsection \<open>Run tests\<close>
   680 subsubsection \<open>State of tests\<close>
   681 text \<open>
   682   All tests work on an old notebook (the right PolyML coudn't be upgraded to more
   683   recent Linux versions)
   684 \<close>
   685 subsubsection \<open>Changesets of begin and end\<close>
   686 text \<open>
   687   Up to the above Mercurial changeset 5100a9c3abf8 isac used CVS;
   688   see https://intra.ist.tugraz.at/hg/isac containing a conversion to Mercurial.
   689 \<close>
   690 
   691 end
   692 (*========== inhibit exn 130719 Isabelle2013 ===================================
   693 ============ inhibit exn 130719 Isabelle2013 =================================*)
   694 
   695 (*-.-.-.-.-.-isolate response.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
   696   -.-.-.-.-.-.-isolate response.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.*)
   697