src/Tools/isac/Knowledge/Equation.thy
author Mathias Lehnfeld <s1210629013@students.fh-hagenberg.at>
Tue, 19 Nov 2013 22:23:30 +0000
changeset 52174 8b055b17bd84
parent 52170 7ef71fb625dd
child 55339 cccd24e959ba
permissions -rw-r--r--
removed all code concerned with "castab = Unsynchronized.ref"
     1 (* equations and functions; functions NOT as lambda-terms
     2    author: Walther Neuper 2005, 2006
     3    (c) due to copyright terms
     4 *)
     5 
     6 theory Equation imports Atools begin
     7 
     8 text {* univariate equations over terms :
     9   In 2003 Richard Lang prototyped ISAC's equation solver while also alpha-testing
    10   the Lucas-Interpreter's Subproblem mechanism.
    11   This prototype suffers from the drop-out of Matthias Goldgruber for a year,
    12   who had started to work on simplification in parallel. So this implementation
    13   replaced simplifiers by many specific theorems for specific terms in specific
    14   phases of equation solving; these specific solutions wait for generalisation
    15   in future improvements of ISAC's equation solver.
    16 *}
    17 
    18 consts
    19 
    20   (*descriptions in the related problems TODOshift here from Descriptions.thy*)
    21   substitution      :: "bool => una"
    22 
    23   (*the CAS-commands*)
    24   solve             :: "[bool * 'a] => bool list" (* solve (x+1=2, x) *)
    25   solveTest         :: "[bool * 'a] => bool list" (* for test collection *)
    26   
    27   (*Script-names*)
    28   Function2Equality :: "[bool, bool,       bool] 
    29 					 => bool"
    30                   ("((Script Function2Equality (_ _ =))// (_))" 9)
    31 
    32 text {* defines equation and univariate-equation
    33         created by: rlang 
    34               date: 02.09
    35         changed by: rlang
    36         last change by: rlang
    37                   date: 02.11.29
    38         (c) by Richard Lang, 2003 *}
    39 
    40 ML {*
    41 val thy = @{theory};
    42 val ctxt = thy2ctxt thy;
    43 
    44 val univariate_equation_prls = 
    45     append_rls "univariate_equation_prls" e_rls 
    46 	       [Calc ("Tools.matches",eval_matches "")];
    47 *}
    48 setup {* KEStore_Elems.add_rlss [("univariate_equation_prls",
    49   (Context.theory_name @{theory}, prep_rls univariate_equation_prls))] *}
    50 ML {*
    51 store_pbt 
    52  (prep_pbt thy "pbl_equ" [] e_pblID
    53  (["equation"],
    54   [("#Given" ,["equality e_e","solveFor v_v"]),
    55    ("#Where" ,["matches (?a = ?b) e_e"]),
    56    ("#Find"  ,["solutions v_v'i'"])
    57   ],
    58   append_rls "equation_prls" e_rls 
    59 	     [Calc ("Tools.matches",eval_matches "")],
    60   SOME "solve (e_e::bool, v_v)",
    61   []));
    62 
    63 store_pbt
    64  (prep_pbt thy "pbl_equ_univ" [] e_pblID
    65  (["univariate","equation"],
    66   [("#Given" ,["equality e_e","solveFor v_v"]),
    67    ("#Where" ,["matches (?a = ?b) e_e"]),
    68    ("#Find"  ,["solutions v_v'i'"])
    69   ],
    70   univariate_equation_prls,SOME "solve (e_e::bool, v_v)",[]));
    71 
    72 
    73 (*.function for handling the cas-input "solve (x+1=2, x)":
    74    make a model which is already in ptree-internal format.*)
    75 (* val (h,argl) = strip_comb (str2term "solve (x+1=2, x)");
    76    val (h,argl) = strip_comb ((term_of o the o (parse thy)) 
    77 				  "solveTest (x+1=2, x)");
    78    *)
    79 fun argl2dtss [Const ("Product_Type.Pair", _) $ eq $ bdv] =
    80     [((the o (parseNEW ctxt)) "equality", [eq]),
    81      ((the o (parseNEW ctxt)) "solveFor", [bdv]),
    82      ((the o (parseNEW ctxt)) "solutions", 
    83       [(the o (parseNEW ctxt)) "L"])
    84      ]
    85   | argl2dtss _ = error "Equation.ML: wrong argument for argl2dtss";
    86 *}
    87 setup {* KEStore_Elems.add_cas
    88   [((term_of o the o (parse thy)) "solveTest", 
    89       (("Test", ["univariate","equation","test"], ["no_met"]), argl2dtss)),
    90     ((term_of o the o (parse thy)) "solve",
    91       (("Isac", ["univariate","equation"], ["no_met"]), argl2dtss))]*}
    92 
    93 
    94 ML {*
    95 store_met
    96     (prep_met thy "met_equ" [] e_metID
    97 	      (["Equation"],
    98 	       [],
    99 	       {rew_ord'="tless_true", rls'=Erls, calc = [], 
   100 		srls = e_rls,
   101 		prls=e_rls,
   102 	     crls = Atools_erls, errpats = [], nrls = e_rls},
   103 "empty_script"
   104 ));
   105 *}
   106 
   107 end