src/Tools/isac/Build_Isac.thy
author Walther Neuper <neuper@ist.tugraz.at>
Tue, 31 Aug 2010 10:19:02 +0200
branchisac-update-Isa09-2
changeset 37962 720173478af6
parent 37959 cc24d0f70544
child 37963 d297a7f71459
permissions -rw-r--r--
cleanup preparing ./thms-replace-Isa02-Isa09-2.sml
     1 (*  Title:   ~~~/isac/Isac_Mathengine.thy
     2     Author: Walther Neuper, TU Graz
     3 
     4 $ cd /usr/local/Isabelle2009-1/src/Tools/isac
     5 $ /usr/local/isabisac/bin/isabelle emacs Build_Isac.thy &
     6 $ /usr/local/isabisac/bin/isabelle jedit Build_Isac.thy &
     7 
     8 12345678901234567890123456789012345678901234567890123456789012345678901234567890
     9         10        20        30        40        50        60        70        80
    10 *)
    11 
    12 header {* Loading the isac mathengine *}
    13 
    14 theory Build_Isac
    15 imports Complex_Main "ProgLang/Script" (*ListC, Tools, Script*)
    16 begin
    17 
    18 ML {* 
    19 writeln "**** build the isac kernel = math-engine + Knowledge ***********";
    20 writeln "**** build the math-engine *************************************" *}
    21 
    22 ML {* Toplevel.debug := true; *}
    23 use "library.sml"
    24 use "calcelems.sml"
    25 ML {* check_guhs_unique := true *}
    26 
    27 use "ProgLang/term.sml"
    28 use "ProgLang/calculate.sml"
    29 use "ProgLang/rewrite.sml"
    30 use_thy"ProgLang/Script"
    31 use "ProgLang/scrtools.sml"
    32 
    33 use "Interpret/mstools.sml"
    34 use "Interpret/ctree.sml"
    35 use "Interpret/ptyps.sml"
    36 use "Interpret/generate.sml"
    37 use "Interpret/calchead.sml"
    38 use "Interpret/appl.sml"
    39 use "Interpret/rewtools.sml"
    40 use "Interpret/script.sml"
    41 use "Interpret/solve.sml"
    42 use "Interpret/inform.sml"
    43 use "Interpret/mathengine.sml"
    44 
    45 use "xmlsrc/mathml.sml"
    46 use "xmlsrc/datatypes.sml"
    47 use "xmlsrc/pbl-met-hierarchy.sml"
    48 use "xmlsrc/thy-hierarchy.sml" 
    49 use "xmlsrc/interface-xml.sml"
    50 
    51 use "Frontend/messages.sml"
    52 use "Frontend/states.sml"
    53 use "Frontend/interface.sml"
    54 
    55 use "print_exn_G.sml"
    56 ML {* writeln "**** build math-engine complete **************************" *}
    57 
    58 ML {* writeln "**** build the Knowledge *********************************" *}
    59 (*use_thy "Knowledge/Typefix" FIXXXMEWN100827*)
    60 use_thy "Knowledge/Descript"
    61 
    62 ML {* @{thm Semiring_Normalization.comm_semiring_1_class.normalizing_semiring_rules(26)} *}
    63 
    64 ML {*"--------------------------------------------"*}
    65 
    66 
    67 ML {*"--------------------------------------------"*}
    68 
    69 ML {* @{thm } *}
    70 
    71 lemma foo: 
    72 by (rule )
    73 
    74 ML {* @{thm foo} *}
    75 
    76 (*
    77 use_thy "Knowledge/Atools"
    78 
    79 
    80 use_thy "Knowledge/Simplify"
    81 use_thy "Knowledge/Poly"
    82 use_thy "Knowledge/Rational"
    83 use_thy "Knowledge/PolyMinus"
    84 use_thy "Knowledge/Equation"
    85 use_thy "Knowledge/LinEq"
    86 use_thy "Knowledge/Root"
    87 use_thy "Knowledge/RootEq"
    88 use_thy "Knowledge/RatEq"
    89 use_thy "Knowledge/RootRat"
    90 use_thy "Knowledge/RootRatEq"
    91 use_thy "Knowledge/PolyEq"
    92 use_thy "Knowledge/Vect"
    93 use_thy "Knowledge/Calculus"
    94 use_thy "Knowledge/Trig"
    95 use_thy "Knowledge/LogExp"
    96 use_thy "Knowledge/Diff"
    97 use_thy "Knowledge/DiffApp"
    98 use_thy "Knowledge/Integrate"
    99 use_thy "Knowledge/EqSystem"
   100 use_thy "Knowledge/Biegelinie"
   101 use_thy "Knowledge/AlgEin"
   102 use_thy "Knowledge/Test"
   103 use_thy "Knowledge/Isac"
   104 *)
   105 end
   106