src/Tools/isac/Knowledge/DiophantEq.thy
author Mathias Lehnfeld <s1210629013@students.fh-hagenberg.at>
Mon, 27 Jan 2014 21:49:27 +0100
changeset 55359 73dc85c025ab
parent 55347 6cee13cd9403
child 55363 d78bc1342183
permissions -rw-r--r--
cleanup, naming: 'KEStore_Elems' in Tests now 'Test_KEStore_Elems', 'store_pbts' now 'add_pbts'
neuper@41931
     1
(* Title:  Knowledge/DiophantEq.thy
neuper@41931
     2
   Author: Mathias Lehnfeld 2011
neuper@41931
     3
   (c) due to copyright terms
neuper@41931
     4
12345678901234567890123456789012345678901234567890123456789012345678901234567890
neuper@41931
     5
        10        20        30        40        50        60        70        80
neuper@41931
     6
*)
neuper@41931
     7
neuper@41931
     8
theory DiophantEq imports Atools Equation Test
neuper@41931
     9
begin
neuper@41921
    10
neuper@41921
    11
consts
neuper@41931
    12
  Diophant'_equation :: "[bool, int, bool ] 
neuper@41921
    13
                                       => bool "
neuper@41921
    14
                    ("((Script Diophant'_equation (_ _ =))//(_))" 9)
neuper@41921
    15
neuper@52148
    16
axiomatization where
neuper@41931
    17
  int_isolate_add: "(bdv + a = b) = (bdv = b + (-1)*(a::int))"
neuper@41921
    18
neuper@41931
    19
ML {*val thy = @{theory}*}
neuper@41921
    20
neuper@41931
    21
text {*problemclass for the usecase*}
neuper@41921
    22
ML {*
neuper@41921
    23
store_pbt
neuper@41921
    24
 (prep_pbt thy "pbl_equ_dio" [] e_pblID
neuper@41921
    25
 (["diophantine","equation"],
neuper@41921
    26
  [("#Given" ,["boolTestGiven e_e","intTestGiven (v_v::int)"]),
neuper@41921
    27
  (*                                      TODO: drop ^^^^^*)
neuper@41921
    28
   ("#Where" ,[]),
neuper@41921
    29
   ("#Find"  ,["boolTestFind s_s"]) 
neuper@41921
    30
  ],
neuper@41921
    31
  e_rls, SOME "solve (e_e::bool, v_v::int)",
neuper@41921
    32
  [["LinEq","solve_lineq_equation"]])); (*-----TODO*)
neuper@41921
    33
*}
s1210629013@55359
    34
setup {* KEStore_Elems.add_pbts
s1210629013@55339
    35
  [(prep_pbt thy "pbl_equ_dio" [] e_pblID
s1210629013@55339
    36
      (["diophantine","equation"],
s1210629013@55339
    37
        [("#Given" ,["boolTestGiven e_e","intTestGiven (v_v::int)"]),
s1210629013@55339
    38
          (*                                      TODO: drop ^^^^^*)
s1210629013@55339
    39
          ("#Where" ,[]),
s1210629013@55339
    40
          ("#Find"  ,["boolTestFind s_s"])],
s1210629013@55339
    41
        e_rls, SOME "solve (e_e::bool, v_v::int)", [["LinEq","solve_lineq_equation"]]))] *}
neuper@41921
    42
neuper@41931
    43
text {*method solving the usecase*}
neuper@41921
    44
ML {*
neuper@41931
    45
store_met
neuper@41931
    46
(prep_met thy "met_test_diophant" [] e_metID
neuper@41931
    47
 (["Test","solve_diophant"]:metID,
neuper@41931
    48
  [("#Given" ,["boolTestGiven e_e","intTestGiven (v_v::int)"]),
neuper@41931
    49
  (*                                      TODO: drop ^^^^^*)
neuper@41931
    50
   ("#Where" ,[]),
neuper@41931
    51
   ("#Find"  ,["boolTestFind s_s"]) 
neuper@41931
    52
  ],
neuper@41931
    53
   {rew_ord' = "e_rew_ord", rls' = tval_rls, srls = e_rls,
neuper@42425
    54
    prls = e_rls, calc = [], crls = tval_rls, errpats = [], nrls = Test_simplify},
neuper@41931
    55
 "Script Diophant_equation (e_e::bool) (v_v::int)=                  " ^
neuper@41931
    56
 "(Repeat                                                          " ^
neuper@41931
    57
 "    ((Try (Rewrite_Inst [(bdv,v_v::int)] int_isolate_add False)) @@" ^
neuper@41931
    58
 "     (Try (Calculate PLUS)) @@  " ^
neuper@41931
    59
 "     (Try (Calculate TIMES))) e_e::bool)"
neuper@41931
    60
 ))
neuper@41921
    61
*}
neuper@41921
    62
neuper@41921
    63
end