src/Tools/isac/Knowledge/Equation.thy
author Walther Neuper <neuper@ist.tugraz.at>
Thu, 24 Oct 2013 15:00:44 +0200
changeset 52155 e4ddf21390fd
parent 52125 6f1d3415dc68
child 52159 db46e97751eb
permissions -rw-r--r--
removed all code concerned with "ruleset' = 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 
    52 
    53 store_pbt 
    54  (prep_pbt thy "pbl_equ" [] e_pblID
    55  (["equation"],
    56   [("#Given" ,["equality e_e","solveFor v_v"]),
    57    ("#Where" ,["matches (?a = ?b) e_e"]),
    58    ("#Find"  ,["solutions v_v'i'"])
    59   ],
    60   append_rls "equation_prls" e_rls 
    61 	     [Calc ("Tools.matches",eval_matches "")],
    62   SOME "solve (e_e::bool, v_v)",
    63   []));
    64 
    65 store_pbt
    66  (prep_pbt thy "pbl_equ_univ" [] e_pblID
    67  (["univariate","equation"],
    68   [("#Given" ,["equality e_e","solveFor v_v"]),
    69    ("#Where" ,["matches (?a = ?b) e_e"]),
    70    ("#Find"  ,["solutions v_v'i'"])
    71   ],
    72   univariate_equation_prls,SOME "solve (e_e::bool, v_v)",[]));
    73 
    74 
    75 (*.function for handling the cas-input "solve (x+1=2, x)":
    76    make a model which is already in ptree-internal format.*)
    77 (* val (h,argl) = strip_comb (str2term "solve (x+1=2, x)");
    78    val (h,argl) = strip_comb ((term_of o the o (parse thy)) 
    79 				  "solveTest (x+1=2, x)");
    80    *)
    81 fun argl2dtss [Const ("Product_Type.Pair", _) $ eq $ bdv] =
    82     [((the o (parseNEW ctxt)) "equality", [eq]),
    83      ((the o (parseNEW ctxt)) "solveFor", [bdv]),
    84      ((the o (parseNEW ctxt)) "solutions", 
    85       [(the o (parseNEW ctxt)) "L"])
    86      ]
    87   | argl2dtss _ = error "Equation.ML: wrong argument for argl2dtss";
    88 
    89 castab := 
    90 overwritel (!castab, 
    91 	    [((term_of o the o (parse thy)) "solveTest", 
    92 	      (("Test", ["univariate","equation","test"], ["no_met"]), 
    93 	       argl2dtss)),
    94 	     ((term_of o the o (parse thy)) "solve",  
    95 	      (("Isac", ["univariate","equation"], ["no_met"]), 
    96 	       argl2dtss))
    97 	     ]);
    98 
    99 
   100 
   101 store_met
   102     (prep_met thy "met_equ" [] e_metID
   103 	      (["Equation"],
   104 	       [],
   105 	       {rew_ord'="tless_true", rls'=Erls, calc = [], 
   106 		srls = e_rls, 
   107 		prls=e_rls,
   108 	     crls = Atools_erls, errpats = [], nrls = e_rls},
   109 "empty_script"
   110 ));
   111 *}
   112 
   113 end