src/Tools/isac/Knowledge/Simplify.thy
author Walther Neuper <neuper@ist.tugraz.at>
Wed, 25 Aug 2010 16:20:07 +0200
branchisac-update-Isa09-2
changeset 37947 22235e4dbe5f
parent 37906 src/Tools/isac/IsacKnowledge/Simplify.thy@e2b23ba9df13
child 37950 525a28152a67
permissions -rw-r--r--
renamed isac's directories and Build_Isac.thy

Scripts --> ProgLang
ME --> Interpret
IsacKnowledge --> Knowledge
     1 (* simplification of terms
     2    author: Walther Neuper 050912
     3    (c) due to copyright terms
     4 
     5 remove_thy"Simplify";
     6 use_thy"~/proto2/isac/src/sml/Knowledge/Simplify";
     7 
     8 use_thy_only"~/proto2/isac/src/sml/Knowledge/Simplify";
     9 use_thy"~/proto2/isac/src/sml/Knowledge/Isac";
    10 *)
    11 
    12 Simplify = Atools +
    13 
    14 consts
    15 
    16   (*descriptions in the related problem*)
    17   term        :: real => una
    18   normalform  :: real => una
    19 
    20   (*the CAS-command*)
    21   Simplify    :: "real => real"  (*"Simplify (1+2a+3+4a)*)
    22   Vereinfache :: "real => real"  (*"Vereinfache (1+2a+3+4a)*)
    23 
    24   (*Script-name*)
    25   SimplifyScript      :: "[real,  real] => real"
    26                   ("((Script SimplifyScript (_ =))// (_))" 9)
    27 
    28 
    29 end