src/Tools/isac/Knowledge/Simplify.thy
author Mathias Lehnfeld <s1210629013@students.fh-hagenberg.at>
Sun, 02 Feb 2014 03:09:40 +0100
changeset 55380 7be2ad0e4acb
parent 55373 4f3f530f3cf6
child 59107 a65b5af1475f
permissions -rw-r--r--
ad 967c8a1eb6b1 (7): remove all code concerned with 'mets = Unsynchronized.ref'
neuper@37906
     1
(* simplification of terms
neuper@37906
     2
   author: Walther Neuper 050912
neuper@37906
     3
   (c) due to copyright terms
neuper@37906
     4
*)
neuper@37906
     5
neuper@37950
     6
theory Simplify imports Atools begin
neuper@37906
     7
neuper@37906
     8
consts
neuper@37906
     9
neuper@37906
    10
  (*descriptions in the related problem*)
neuper@38083
    11
  Term        :: "real => una"
neuper@38083
    12
(*TERM -->   Const ("Pure.term", "RealDef.real => prop")  (*!!!*) $ 
neuper@38083
    13
               Free ("ttt", "RealDef.real")
neuper@38083
    14
  term -->   Free ("term", "RealDef.real => RealDef.real") $
neuper@38083
    15
               Free ("ttt", "RealDef.real")
neuper@38083
    16
    but 'term' is a keyword in *.thy*)
neuper@37950
    17
  normalform  :: "real => una"
neuper@37906
    18
neuper@37906
    19
  (*the CAS-command*)
neuper@37906
    20
  Simplify    :: "real => real"  (*"Simplify (1+2a+3+4a)*)
neuper@37906
    21
  Vereinfache :: "real => real"  (*"Vereinfache (1+2a+3+4a)*)
neuper@37906
    22
neuper@37906
    23
  (*Script-name*)
neuper@37906
    24
  SimplifyScript      :: "[real,  real] => real"
neuper@37906
    25
                  ("((Script SimplifyScript (_ =))// (_))" 9)
neuper@37906
    26
neuper@37950
    27
ML {*
neuper@37972
    28
val thy = @{theory};
s1210629013@55363
    29
*}
neuper@37950
    30
(** problems **)
s1210629013@55359
    31
setup {* KEStore_Elems.add_pbts
s1210629013@55339
    32
  [(prep_pbt thy "pbl_simp" [] e_pblID
s1210629013@55339
    33
      (["simplification"],
s1210629013@55339
    34
        [("#Given" ,["Term t_t"]),
s1210629013@55339
    35
          ("#Find"  ,["normalform n_n"])],
s1210629013@55339
    36
        append_rls "e_rls" e_rls [(*for preds in where_*)], SOME "Simplify t_t", [])),
s1210629013@55339
    37
    (prep_pbt thy "pbl_vereinfache" [] e_pblID
s1210629013@55339
    38
      (["vereinfachen"],
s1210629013@55339
    39
        [("#Given", ["Term t_t"]),
s1210629013@55339
    40
          ("#Find", ["normalform n_n"])],
s1210629013@55339
    41
        append_rls "e_rls" e_rls [(*for preds in where_*)], SOME "Vereinfache t_t", []))] *}
neuper@42425
    42
ML {*
neuper@48763
    43
@{thm mult_commute}
neuper@48763
    44
*}
neuper@37950
    45
neuper@37950
    46
(** methods **)
s1210629013@55373
    47
setup {* KEStore_Elems.add_mets
s1210629013@55373
    48
  [prep_met thy "met_tsimp" [] e_metID
s1210629013@55373
    49
	    (["simplification"],
s1210629013@55373
    50
	      [("#Given" ,["Term t_t"]),
s1210629013@55373
    51
		      ("#Find"  ,["normalform n_n"])],
s1210629013@55373
    52
		    {rew_ord'="tless_true", rls'= e_rls, calc = [], srls = e_rls, prls=e_rls, crls = e_rls,
s1210629013@55373
    53
		      errpats = [], nrls = e_rls},
s1210629013@55373
    54
	      "empty_script")]
s1210629013@55373
    55
*}
s1210629013@55373
    56
neuper@42425
    57
ML {*
neuper@37950
    58
neuper@37950
    59
(** CAS-command **)
neuper@37950
    60
neuper@37950
    61
(*.function for handling the cas-input "Simplify (2*a + 3*a)":
neuper@37950
    62
   make a model which is already in ptree-internal format.*)
neuper@37950
    63
(* val (h,argl) = strip_comb (str2term "Simplify (2*a + 3*a)");
neuper@40836
    64
   val (h,argl) = strip_comb ((term_of o the o (parse (Thy_Info.get_theory "Simplify"))) 
neuper@37950
    65
				  "Simplify (2*a + 3*a)");
neuper@37950
    66
   *)
neuper@37950
    67
fun argl2dtss t =
neuper@38083
    68
    [((term_of o the o (parse thy)) "Term", t),
neuper@37972
    69
     ((term_of o the o (parse thy)) "normalform", 
neuper@37972
    70
      [(term_of o the o (parse thy)) "N"])
neuper@37950
    71
     ]
s1210629013@52170
    72
  (*| argl2dtss _ = error "Simplify.ML: wrong argument for argl2dtss"*);
neuper@37950
    73
*}
s1210629013@52170
    74
setup {* KEStore_Elems.add_cas
s1210629013@52170
    75
  [((term_of o the o (parse thy)) "Simplify",  
s1210629013@52170
    76
    (("Isac", ["simplification"], ["no_met"]), argl2dtss)),
s1210629013@52170
    77
   ((term_of o the o (parse thy)) "Vereinfache",  
s1210629013@52170
    78
     (("Isac", ["vereinfachen"], ["no_met"]), argl2dtss))]*}
neuper@37906
    79
neuper@37906
    80
end