src/Tools/isac/Knowledge/Equation.thy
author Mathias Lehnfeld <s1210629013@students.fh-hagenberg.at>
Sat, 01 Feb 2014 16:44:45 +0100
changeset 55373 4f3f530f3cf6
parent 55363 d78bc1342183
child 55380 7be2ad0e4acb
permissions -rw-r--r--
ad 967c8a1eb6b1 (2): add functions accessing Theory_Data in parallel to those accessing 'mets = 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 setup {* KEStore_Elems.add_pbts
    51   [(prep_pbt thy "pbl_equ" [] e_pblID
    52       (["equation"],
    53         [("#Given" ,["equality e_e","solveFor v_v"]),
    54           ("#Where" ,["matches (?a = ?b) e_e"]),
    55           ("#Find"  ,["solutions v_v'i'"])],
    56         append_rls "equation_prls" e_rls  [Calc ("Tools.matches",eval_matches "")],
    57         SOME "solve (e_e::bool, v_v)", [])),
    58     (prep_pbt thy "pbl_equ_univ" [] e_pblID
    59       (["univariate","equation"],
    60         [("#Given" ,["equality e_e","solveFor v_v"]),
    61           ("#Where" ,["matches (?a = ?b) e_e"]),
    62           ("#Find"  ,["solutions v_v'i'"])],
    63         univariate_equation_prls, SOME "solve (e_e::bool, v_v)", []))] *}
    64 
    65 
    66 ML{*
    67 (*.function for handling the cas-input "solve (x+1=2, x)":
    68    make a model which is already in ptree-internal format.*)
    69 (* val (h,argl) = strip_comb (str2term "solve (x+1=2, x)");
    70    val (h,argl) = strip_comb ((term_of o the o (parse thy)) 
    71 				  "solveTest (x+1=2, x)");
    72    *)
    73 fun argl2dtss [Const ("Product_Type.Pair", _) $ eq $ bdv] =
    74     [((the o (parseNEW ctxt)) "equality", [eq]),
    75      ((the o (parseNEW ctxt)) "solveFor", [bdv]),
    76      ((the o (parseNEW ctxt)) "solutions", 
    77       [(the o (parseNEW ctxt)) "L"])
    78      ]
    79   | argl2dtss _ = error "Equation.ML: wrong argument for argl2dtss";
    80 *}
    81 setup {* KEStore_Elems.add_cas
    82   [((term_of o the o (parse thy)) "solveTest", 
    83       (("Test", ["univariate","equation","test"], ["no_met"]), argl2dtss)),
    84     ((term_of o the o (parse thy)) "solve",
    85       (("Isac", ["univariate","equation"], ["no_met"]), argl2dtss))]*}
    86 
    87 
    88 ML {*
    89 store_met
    90     (prep_met thy "met_equ" [] e_metID
    91 	      (["Equation"],
    92 	       [],
    93 	       {rew_ord'="tless_true", rls'=Erls, calc = [], 
    94 		srls = e_rls,
    95 		prls=e_rls,
    96 	     crls = Atools_erls, errpats = [], nrls = e_rls},
    97 "empty_script"
    98 ));
    99 *}
   100 setup {* KEStore_Elems.add_mets
   101   [prep_met thy "met_equ" [] e_metID
   102 	    (["Equation"], [],
   103 	      {rew_ord'="tless_true", rls'=Erls, calc = [], srls = e_rls, prls=e_rls, crls = Atools_erls,
   104           errpats = [], nrls = e_rls},
   105         "empty_script")]
   106 *}
   107 
   108 end