src/Tools/isac/Knowledge/RootRat.thy
author wenzelm
Wed, 26 May 2021 16:24:05 +0200
changeset 60286 31efa1b39a20
parent 60278 343efa173023
child 60289 a7b88fc19a92
permissions -rw-r--r--
command 'setup_rule' semantic equivalent for KEStore_Elems.add_rlss;
     1 (* Title:  collecting all knowledge for Root and Rational
     2    Author: Richard Lang 02.10 last change by: rlang date: 02.10.20
     3    (c) due to copyright terms
     4 *)
     5 
     6 theory RootRat imports Root Rational begin
     7 
     8 ML \<open>
     9 val thy = @{theory};
    10 
    11 val rootrat_erls = 
    12   Rule_Set.merge "rootrat_erls" Root_erls
    13     (Rule_Set.merge "" rational_erls
    14       (Rule_Set.append_rules "" Rule_Set.empty []));
    15 
    16 (*.calculate numeral groundterms.*)
    17 val calculate_RootRat = 
    18   Rule_Set.append_rules "calculate_RootRat" calculate_Rational
    19 	    [Rule.Thm ("distrib_left",ThmC.numerals_to_Free @{thm distrib_left}),
    20 		      (* w*(z1.0 + z2.0) = w * z1.0 + w * z2.0 *)
    21 		     Rule.Thm ("mult_1_left",ThmC.numerals_to_Free @{thm mult_1_left}),
    22 		      (* 1 * z = z *)
    23 		     Rule.Thm ("sym_real_mult_minus1",ThmC.numerals_to_Free (@{thm real_mult_minus1} RS @{thm sym})),
    24 		       (* "- z1 = -1 * z1"  *)
    25 		     Rule.Eval ("NthRoot.sqrt", eval_sqrt "#sqrt_")
    26 		     ];
    27 
    28 val prep_rls' = Auto_Prog.prep_rls @{theory};
    29 \<close>
    30 setup_rule
    31   rootrat_erls = \<open>prep_rls' rootrat_erls\<close> and
    32   calculate_RootRat = \<open>prep_rls' calculate_RootRat\<close>
    33 ML \<open>
    34 \<close> ML \<open>
    35 \<close> ML \<open>
    36 \<close>
    37 end