src/Tools/isac/ProgLang/Prog_Expr.thy
author wneuper <walther.neuper@jku.at>
Tue, 13 Jul 2021 10:43:21 +0200
changeset 60322 2220bafba61f
parent 60320 02102eaa2021
child 60331 40eb8aa2b0d6
permissions -rw-r--r--
Test_Some.thy + rewrite.sml + poly.sml ok: improve eval_is_atom
     1 (* title:  ProgLang/Prog_Expr.thy
     2            functions for expressions (which do NOT contain Prog_Tac and Tactical, by definition))
     3    author: Walther Neuper, Aug.2019
     4    (c) copyright due to lincense terms.
     5 *)
     6 
     7 theory Prog_Expr
     8   imports Calculate ListC Program
     9 begin
    10 
    11 text \<open>Abstract:
    12   Specific constants are defined for pre-conditions of programs and for program-expressions.
    13   The constants are connected with ML functions for evaluation of respective expressions
    14   (all named eval_*), such that Isac's rewrite engine can handle it.
    15 \<close>
    16 
    17 subsection \<open>Power re-defined for a specific type\<close>
    18 abbreviation real_powr :: "real \<Rightarrow> real \<Rightarrow> real"  (infixr "\<up>" 80)
    19 where "x \<up> a \<equiv> x powr a"
    20 
    21 subsection \<open>consts of functions in pre-conditions and program-expressions\<close>
    22 consts
    23   lhs             :: "bool => real"           (*of an equality*)
    24   rhs             :: "bool => real"           (*of an equality*)
    25   Vars            :: "'a => real list"        (*get the variables of a term *)
    26   matches         :: "['a, 'a] => bool"
    27   matchsub        :: "['a, 'a] => bool"
    28   some_occur_in  :: "[real list, 'a] => bool" ("some'_of _ occur'_in _")
    29   occurs_in       :: "[real     , 'a] => bool" ("_ occurs'_in _")
    30 
    31   abs              :: "real => real"            ("(|| _ ||)")
    32   (* ~~~ FIXXXME Isabelle2002 has abs already !!!*)
    33   absset           :: "real set => real"        ("(||| _ |||)")
    34   (*is numeral constant ?*)
    35   is_const        :: "real => bool"            ("_ is'_const" 10)
    36   (*is_const rename to is_num FIXXXME.WN.16.5.03 *)
    37   is_atom         :: "real => bool"            ("_ is'_atom" 10)
    38   is_even         :: "real => bool"            ("_ is'_even" 10)
    39 		
    40   (* identity on term level*)
    41   ident            :: "['a, 'a] => bool"        ("(_ =!=/ _)" [51, 51] 50)
    42   argument_in     :: "real => real"            ("argument'_in _" 10)
    43   sameFunId        :: "[real, bool] => bool"    (* "same_funid _ _" 10
    44 	                    WN0609 changed the id, because ".. _ _" inhibits currying *)
    45   filter_sameFunId:: "[real, bool list] => bool list" ("filter'_sameFunId _ _" 10)
    46   boollist2sum     :: "bool list => real"
    47   lastI            :: "'a list \<Rightarrow> 'a"
    48 
    49 subsection \<open>ML code for functions in pre-conditions and program-expressions\<close>
    50 ML \<open>
    51 signature PROG_EXPR =
    52   sig
    53 (*//------------------------- from Tools .thy-------------------------------------------------\\*)
    54     val lhs: term -> term
    55     val eval_lhs: 'a -> string -> term -> 'b -> (string * term) option
    56     val eval_matches: string -> string -> term -> theory -> (string * term) option
    57     val matchsub: theory -> term -> term -> bool
    58     val eval_matchsub: string -> string -> term -> theory -> (string * term) option
    59     val rhs: term -> term
    60     val eval_rhs: 'a -> string -> term -> 'b -> (string * term) option
    61     val eval_var: string -> string -> term -> theory -> (string * term) option
    62 
    63     val or2list: term -> term
    64 (*\\------------------------- from Tools .thy-------------------------------------------------//*)
    65 (*//------------------------- from Atools .thy------------------------------------------------\\*)
    66     val occurs_in: term -> term -> bool
    67     val eval_occurs_in: 'a -> string -> term -> 'b -> (string * term) option
    68     val some_occur_in: term list -> term -> bool
    69     val eval_some_occur_in: 'a -> string -> term -> 'b -> (string * term) option
    70     val eval_is_atom: string -> string -> term -> 'a -> (string * term) option
    71     val even: int -> bool
    72     val eval_is_even: string -> string -> term -> 'a -> (string * term) option
    73     val eval_const: string -> string -> term -> 'a -> (string * term) option
    74     val eval_equ: string -> string -> term -> 'a -> (string * term) option
    75     val eval_ident: string -> string -> term -> theory -> (string * term) option
    76     val eval_equal: string -> string -> term -> theory -> (string * term) option
    77     val eval_cancel: string -> string -> term -> 'a -> (string * term) option
    78     val eval_argument_in: string -> string -> term -> 'a -> (string * term) option
    79     val same_funid: term -> term -> bool
    80     val eval_sameFunId: string -> string -> term -> 'a -> (string * term) option
    81     val eval_filter_sameFunId: string -> string -> term -> 'a -> (string * term) option
    82     val list2sum: term list -> term
    83     val eval_boollist2sum: string -> string -> term -> 'a -> (string * term) option
    84 
    85     val mk_thmid_f: string -> (int * int) * (int * int) -> (int * int) * (int * int) -> string
    86   end
    87 
    88 (**)
    89 structure Prog_Expr(**): PROG_EXPR =(**)
    90 struct
    91 (**)
    92 
    93 (*+ for Or_to_List +*)
    94 fun or2list (Const ("HOL.True",_)) = ((*tracing"### or2list True";*) UniversalList)
    95   | or2list (Const ("HOL.False",_)) = ((*tracing"### or2list False";*) EmptyList)
    96   | or2list (t as Const ("HOL.eq",_) $ _ $ _) = TermC.list2isalist HOLogic.boolT [t]
    97   | or2list ors =
    98     let
    99       fun get ls (Const ("HOL.disj",_) $ o1 $ o2) =
   100 	        (case o2 of
   101 	         	Const ("HOL.disj",_) $ _ $ _ => get (ls @ [o1]) o2
   102 	        | _ => ls @ [o1, o2])
   103         | get _ t = raise TERM ("or2list: missing pattern in fun.def", [t])
   104     in (((TermC.list2isalist HOLogic.boolT) o (get [])) ors) end
   105 (*>val t = @{term True};
   106 > val t' = or2list t;
   107 > term2str t';
   108 "ListC.UniversalList"
   109 > val t = @{term False};
   110 > val t' = or2list t;
   111 > term2str t';
   112 "[]"
   113 > val t=(Thm.term_of o the o (parse thy)) "x=3";
   114 > val t' = or2list t;
   115 > term2str t';
   116 "[x = 3]"
   117 > val t=(Thm.term_of o the o (parse thy))"(x=3) | (x=-3) | (x=0)";
   118 > val t' = or2list t;
   119 > term2str t';
   120 "[x = #3, x = #-3, x = #0]" : string *)
   121 
   122 
   123 (** evaluation on the meta-level **)
   124 
   125 (*. evaluate the predicate matches (match on whole term only) .*)
   126 (*("matches",("Prog_Expr.matches", eval_matches "#matches_")):calc*)
   127 fun eval_matches (_:string) "Prog_Expr.matches" (t as Const ("Prog_Expr.matches",_) $ pat $ tst) thy = 
   128     if TermC.matches thy tst pat
   129     then 
   130       let
   131         val prop = HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True}))
   132 	    in SOME (UnparseC.term_in_thy thy prop, prop) end
   133     else 
   134       let 
   135         val prop = HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False}))
   136 	    in SOME (UnparseC.term_in_thy thy prop, prop) end
   137   | eval_matches _ _ _ _ = NONE; 
   138 (*
   139 > val t  = (Thm.term_of o the o (parse thy)) 
   140 	      "matches (?x = 0) (1 * x \<up> 2 = 0)";
   141 > eval_matches "/thmid/" "/op_/" t thy;
   142 val it =
   143   SOME
   144     ("matches (x = 0) (1 * x \<up> 2 = 0) = False",
   145      Const (#,#) $ (# $ # $ Const #)) : (string * term) option
   146 
   147 > val t  = (Thm.term_of o the o (parse thy)) 
   148 	      "matches (?a = #0) (#1 * x \<up> #2 = #0)";
   149 > eval_matches "/thmid/" "/op_/" t thy;
   150 val it =
   151   SOME
   152     ("matches (?a = #0) (#1 * x \<up> #2 = #0) = True",
   153      Const (#,#) $ (# $ # $ Const #)) : (string * term) option
   154 
   155 > val t  = (Thm.term_of o the o (parse thy)) 
   156 	      "matches (?a * x = #0) (#1 * x \<up> #2 = #0)";
   157 > eval_matches "/thmid/" "/op_/" t thy;
   158 val it =
   159   SOME
   160     ("matches (?a * x = #0) (#1 * x \<up> #2 = #0) = False",
   161      Const (#,#) $ (# $ # $ Const #)) : (string * term) option
   162 
   163 > val t  = (Thm.term_of o the o (parse thy)) 
   164 	      "matches (?a * x \<up> #2 = #0) (#1 * x \<up> #2 = #0)";
   165 > eval_matches "/thmid/" "/op_/" t thy;
   166 val it =
   167   SOME
   168     ("matches (?a * x \<up> #2 = #0) (#1 * x \<up> #2 = #0) = True",
   169      Const (#,#) $ (# $ # $ Const #)) : (string * term) option                  
   170 ----- before ?patterns ---:
   171 > val t  = (Thm.term_of o the o (parse thy)) 
   172 	      "matches (a * b \<up> #2 = c) (#3 * x \<up> #2 = #1)";
   173 > eval_matches "/thmid/" "/op_/" t thy;
   174 SOME
   175     ("matches (a * b \<up> #2 = c) (#3 * x \<up> #2 = #1) = True",
   176      Const ("HOL.Trueprop", "bool => prop") $ (Const # $ (# $ #) $ Const (#,#)))
   177   : (string * term) option 
   178 
   179 > val t = (Thm.term_of o the o (parse thy)) 
   180 	      "matches (a * b \<up> #2 = c) (#3 * x \<up> #2222 = #1)";
   181 > eval_matches "/thmid/" "/op_/" t thy;
   182 SOME ("matches (a * b \<up> #2 = c) (#3 * x \<up> #2222 = #1) = False",
   183      Const ("HOL.Trueprop", "bool => prop") $ (Const # $ (# $ #) $ Const (#,#)))
   184 
   185 > val t = (Thm.term_of o the o (parse thy)) 
   186                "matches (a = b) (x + #1 + #-1 * #2 = #0)";
   187 > eval_matches "/thmid/" "/op_/" t thy;
   188 SOME ("matches (a = b) (x + #1 + #-1 * #2 = #0) = True",Const # $ (# $ #))
   189 *)
   190 
   191 (*.does a pattern match some subterm ?.*)
   192 fun matchsub thy t pat =  
   193   let
   194     fun matchs (t as Const _) = TermC.matches thy t pat
   195 	      | matchs (t as Free _) = TermC.matches thy t pat
   196 	      | matchs (t as Var _) = TermC.matches thy t pat
   197 	      | matchs (Bound _) = false
   198 	      | matchs (t as Abs (_, _, body)) = 
   199 	          if TermC.matches thy t pat then true else TermC.matches thy body pat
   200 	      | matchs (t as f1 $ f2) =
   201 	          if TermC.matches thy t pat then true 
   202 	            else if matchs f1 then true else matchs f2
   203   in matchs t end;
   204 
   205 (*("matchsub",("Prog_Expr.matchsub", eval_matchsub "#matchsub_")):calc*)
   206 fun eval_matchsub (_:string) "Prog_Expr.matchsub"
   207       (t as Const ("Prog_Expr.matchsub",_) $ pat $ tst) thy = 
   208     if matchsub thy tst pat
   209     then 
   210       let val prop = HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True}))
   211       in SOME (UnparseC.term_in_thy thy prop, prop) end
   212     else 
   213       let val prop = HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False}))
   214       in SOME (UnparseC.term_in_thy thy prop, prop) end
   215   | eval_matchsub _ _ _ _ = NONE; 
   216 
   217 (*get the variables in an isabelle-term*)
   218 (*("Vars"    ,("Prog_Expr.Vars"    , eval_var "#Vars_")):calc*)
   219 fun eval_var (thmid:string) "Prog_Expr.Vars" (t as (Const _ $ arg)) thy = 
   220     let 
   221       val t' = ((TermC.list2isalist HOLogic.realT) o TermC.vars) t;
   222       val thmId = thmid ^ UnparseC.term_in_thy thy arg;
   223     in SOME (thmId, HOLogic.Trueprop $ (TermC.mk_equality (t, t'))) end
   224   | eval_var _ _ _ _ = NONE;
   225 
   226 (* refer to Thm.lhs_of *)
   227 fun lhs (Const ("HOL.eq",_) $ l $ _) = l
   228   | lhs t = raise ERROR("lhs called with (" ^ UnparseC.term t ^ ")");
   229 (*("lhs"    ,("Prog_Expr.lhs"    , eval_lhs "")):calc*)
   230 fun eval_lhs _ "Prog_Expr.lhs" (t as (Const ("Prog_Expr.lhs",_) $ (Const ("HOL.eq",_) $ l $ _))) _ = 
   231     SOME ((UnparseC.term t) ^ " = " ^ (UnparseC.term l),
   232 	  HOLogic.Trueprop $ (TermC.mk_equality (t, l)))
   233   | eval_lhs _ _ _ _ = NONE;
   234 (*
   235 > val t = (Thm.term_of o the o (parse thy)) "lhs (1 * x \<up> 2 = 0)";
   236 > val SOME (id,t') = eval_lhs 0 0 t 0;
   237 val id = "Prog_Expr.lhs (1 * x \<up> 2 = 0) = 1 * x \<up> 2" : string
   238 > term2str t';
   239 val it = "Prog_Expr.lhs (1 * x \<up> 2 = 0) = 1 * x \<up> 2" : string
   240 *)
   241 
   242 fun rhs (Const ("HOL.eq",_) $ _ $ r) = r
   243   | rhs t = raise ERROR("rhs called with (" ^ UnparseC.term t ^ ")");
   244 (*("rhs"    ,("Prog_Expr.rhs"    , eval_rhs "")):calc*)
   245 fun eval_rhs _ "Prog_Expr.rhs" (t as (Const ("Prog_Expr.rhs",_) $ (Const ("HOL.eq",_) $ _ $ r))) _ = 
   246     SOME (UnparseC.term t ^ " = " ^ UnparseC.term r,
   247 	  HOLogic.Trueprop $ (TermC.mk_equality (t, r)))
   248   | eval_rhs _ _ _ _ = NONE;
   249 (*\\------------------------- from Prog_Expr.thy-------------------------------------------------//*)
   250 
   251 (*//------------------------- from Atools.thy------------------------------------------------\\*)
   252 fun occurs_in v t = member op = (((map strip_thy) o TermC.ids2str) t) (Term.term_name v);
   253 
   254 (*("occurs_in", ("Prog_Expr.occurs_in", Prog_Expr.eval_occurs_in ""))*)
   255 fun eval_occurs_in _ "Prog_Expr.occurs_in" (p as (Const ("Prog_Expr.occurs_in",_) $ v $ t)) _ =
   256     ((*tracing("#>@ eval_occurs_in: v= "^(UnparseC.term v));
   257      tracing("#>@ eval_occurs_in: t= "^(UnparseC.term t));*)
   258      if occurs_in v t
   259     then SOME ((UnparseC.term p) ^ " = True",
   260 	  HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
   261     else SOME ((UnparseC.term p) ^ " = False",
   262 	  HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False}))))
   263   | eval_occurs_in _ _ _ _ = NONE;
   264 
   265 (*some of the (bound) variables (eg. in an eqsys) "vs" occur in term "t"*)   
   266 fun some_occur_in vs t = 
   267     let fun occurs_in' a b = occurs_in b a
   268     in foldl or_ (false, map (occurs_in' t) vs) end;
   269 
   270 (*("some_occur_in", ("Prog_Expr.some_occur_in", 
   271 			eval_some_occur_in "#eval_some_occur_in_"))*)
   272 fun eval_some_occur_in _ "Prog_Expr.some_occur_in"
   273 			  (p as (Const ("Prog_Expr.some_occur_in",_) $ vs $ t)) _ =
   274     if some_occur_in (TermC.isalist2list vs) t
   275     then SOME ((UnparseC.term p) ^ " = True",
   276 	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
   277     else SOME ((UnparseC.term p) ^ " = False",
   278 	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
   279   | eval_some_occur_in _ _ _ _ = NONE;
   280 
   281 (*("is_atom",("Prog_Expr.is_atom", Prog_Expr.eval_is_atom "#is_atom_"))*)
   282 fun eval_is_atom (thmid:string) "Prog_Expr.is_atom" (t as (Const _ $ arg)) _ = 
   283     if TermC.is_atom arg
   284     then SOME (TermC.mk_thmid thmid (TermC.string_of_atom arg) "", 
   285 			HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   286     else SOME (TermC.mk_thmid thmid (TermC.string_of_atom arg) "", 
   287 		  HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   288   | eval_is_atom _ _ _ _ = NONE;
   289 
   290 fun even i = (i div 2) * 2 = i;
   291 (*("is_even",("Prog_Expr.is_even", eval_is_even "#is_even_"))*)
   292 fun eval_is_even (thmid:string) "Prog_Expr.is_even" (t as (Const _ $ arg)) _ = 
   293     if TermC.is_num arg
   294     then
   295       let
   296         val i = arg |> HOLogic.dest_number |> snd
   297       in
   298 	      if even i 
   299         then SOME (TermC.mk_thmid thmid (string_of_int i) "", 
   300 				  HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   301 	      else SOME (TermC.mk_thmid thmid "" "", 
   302 			    HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   303       end
   304     else NONE
   305   | eval_is_even _ _ _ _ = NONE; 
   306 
   307 (*("is_const",("Prog_Expr.is_const", Prog_Expr.eval_const "#is_const_"))*)
   308 fun eval_const thmid _ (t as (Const ("Prog_Expr.is_const", _) $ Const ("Partial_Fractions.AA", _))) _ =
   309     (*TODO get rid of this special case*)
   310     SOME (TermC.mk_thmid thmid (UnparseC.term t) "",
   311       HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   312   | eval_const thmid _ (t as (Const ("Prog_Expr.is_const", _) $ Const _)) _ =
   313     SOME (TermC.mk_thmid thmid (UnparseC.term t) "",
   314       HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   315   | eval_const thmid _ (t as (Const ("Prog_Expr.is_const", _) $ n)) _ =
   316 	   if TermC.is_num n
   317 	   then SOME (TermC.mk_thmid thmid (TermC.string_of_num n) "",
   318        HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   319 	   else SOME (TermC.mk_thmid thmid (UnparseC.term n) "",
   320        HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   321   | eval_const _ _ _ _ = NONE; 
   322 
   323 (*. evaluate binary, associative, commutative operators: *,+,^ .*)
   324 (*("PLUS"    ,("Groups.plus_class.plus"        , (**)eval_binop "#add_")),
   325   ("TIMES"   ,("Groups.times_class.times"        , (**)eval_binop "#mult_")),
   326   ("POWER"  ,("Transcendental.powr"  , (**)eval_binop "#power_"))*)
   327 
   328 (* val (thmid,op_,t as(Const (op0,t0) $ Free (n1,t1) $ Free(n2,t2)),thy) =
   329        ("xxxxxx",op_,t,thy);
   330    *)
   331 fun mk_thmid_f thmid ((v11, v12), (p11, p12)) ((v21, v22), (p21, p22)) = (* dropped *)
   332   thmid ^ "Float ((" ^ 
   333   (string_of_int v11)^", "^(string_of_int v12)^"), ("^
   334   (string_of_int p11)^", "^(string_of_int p12)^")) __ (("^
   335   (string_of_int v21)^", "^(string_of_int v22)^"), ("^
   336   (string_of_int p21)^", "^(string_of_int p22)^"))";
   337 
   338 (*.evaluate < and <= for numerals.*)
   339 (*("le"      ,("Orderings.ord_class.less"        , Prog_Expr.eval_equ "#less_")),
   340   ("leq"     ,("Orderings.ord_class.less_eq"       , Prog_Expr.eval_equ "#less_equal_"))*)
   341 fun eval_equ (thmid:string) (_(*op_*)) (t as (Const (op0, _)) $ t1 $ t2) _ =
   342     if TermC.is_num t1 andalso TermC.is_num t2 then
   343       let
   344         val n1 = t1 |> HOLogic.dest_number |> snd 
   345         val n2 = t2 |> HOLogic.dest_number |> snd 
   346       in
   347         if Eval.calc_equ (strip_thy op0) (n1, n2)
   348         then SOME (TermC.mk_thmid thmid (string_of_int n1) (string_of_int n2), 
   349     	    HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   350         else SOME (TermC.mk_thmid thmid (string_of_int n1) (string_of_int n2),  
   351     	   HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   352       end
   353     else NONE
   354   | eval_equ _ _ _ _ = NONE;
   355 
   356 
   357 (*evaluate identity
   358 > reflI;
   359 val it = "(?t = ?t) = True"
   360 > val t = str2term "x = 0";
   361 > val NONE = rewrite_ thy Rewrite_Ord.dummy_ord Rule_Set.empty false reflI t;
   362 
   363 > val t = str2term "1 = 0";
   364 > val NONE = rewrite_ thy Rewrite_Ord.dummy_ord Rule_Set.empty false reflI t;
   365 ----------- thus needs Rule.Eval !
   366 > val t = str2term "0 = 0";
   367 > val SOME (t',_) = rewrite_ thy Rewrite_Ord.dummy_ord Rule_Set.empty false reflI t;
   368 > UnparseC.term t';
   369 val it = "HOL.True"
   370 
   371 val t = str2term "Not (x = 0)";
   372 atomt t; UnparseC.term t;
   373 *** -------------
   374 *** Const ( Not)
   375 *** . Const ( op =)
   376 *** . . Free ( x, )
   377 *** . . Free ( 0, )
   378 val it = "x ~= 0" : string*)
   379 
   380 (*.evaluate identity on the term-level, =!= ,i.e. without evaluation of 
   381   the arguments: thus special handling by 'fun eval_binop'*)
   382 (*("ident"   ,("Prog_Expr.ident", Prog_Expr.eval_ident "#ident_")):calc*)
   383 fun eval_ident (thmid:string) "Prog_Expr.ident" (t as 
   384 	       (Const _(*op0, t0*) $ t1 $ t2 )) thy = 
   385   if t1 = t2
   386   then SOME (TermC.mk_thmid thmid 
   387 	              ("(" ^ (UnparseC.term_in_thy thy t1) ^ ")")
   388 	              ("(" ^ (UnparseC.term_in_thy thy t2) ^ ")"), 
   389 	     HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   390   else SOME (TermC.mk_thmid thmid  
   391 	              ("(" ^ (UnparseC.term_in_thy thy t1) ^ ")")
   392 	              ("(" ^ (UnparseC.term_in_thy thy t2) ^ ")"),  
   393 	     HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   394   | eval_ident _ _ _ _ = NONE;
   395 (* TODO
   396 > val t = str2term "x =!= 0";
   397 > val SOME (str, t') = eval_ident "ident_" "b" t thy;
   398 > UnparseC.term t';
   399 val str = "ident_(x)_(0)" : string
   400 val it = "(x =!= 0) = False" : string                                
   401 > val t = str2term "1 =!= 0";
   402 > val SOME (str, t') = eval_ident "ident_" "b" t thy;
   403 > UnparseC.term t';
   404 val str = "ident_(1)_(0)" : string 
   405 val it = "(1 =!= 0) = False" : string                                       
   406 > val t = str2term "0 =!= 0";
   407 > val SOME (str, t') = eval_ident "ident_" "b" t thy;
   408 > UnparseC.term t';
   409 val str = "ident_(0)_(0)" : string
   410 val it = "(0 =!= 0) = True" : string
   411 *)
   412 
   413 
   414 (* evaluate identity of terms, which stay ready for further evaluation;
   415   thus returns False only for atoms *)
   416 (*("equal"   ,("HOL.eq", Prog_Expr.eval_equal "#equal_")):calc*)
   417 fun eval_equal (thmid : string) "HOL.eq" (t as (Const _(*op0,t0*) $ t1 $ t2 )) thy = 
   418   if t1 = t2
   419   then
   420     SOME (TermC.mk_thmid thmid
   421       ("(" ^ UnparseC.term_in_thy thy t1 ^ ")") ("(" ^ UnparseC.term_in_thy thy t2 ^ ")"), 
   422       HOLogic.Trueprop $ (TermC.mk_equality (t, @{term True})))
   423   else
   424     (case (TermC.is_atom t1, TermC.is_atom t2) of
   425       (true, true) =>
   426         if TermC.variable_constant_pair (t1, t2)
   427         then NONE
   428         else SOME (TermC.mk_thmid thmid
   429           ("(" ^ UnparseC.term_in_thy thy t1 ^ ")") ("(" ^ UnparseC.term_in_thy thy t2 ^ ")"),
   430           HOLogic.Trueprop $ (TermC.mk_equality (t, @{term False})))
   431     | _ => NONE)                                              (* NOT is_atom t1,t2 --> rew_sub *)
   432   | eval_equal _ _ _ _ = NONE;                                                   (* error-exit *)
   433 
   434 (*. evaluate HOL.divide .*)
   435 (*("DIVIDE" ,("Rings.divide_class.divide"  , eval_cancel "#divide_e"))*)
   436 fun eval_cancel thmid "Rings.divide_class.divide" (t as (Const _ $ t1 $ t2)) _ = 
   437     if TermC.is_num t1 andalso TermC.is_num t2 then
   438       let
   439         val (T, _) = HOLogic.dest_number t1;
   440         val (i1, i2) = (Eval.int_of_numeral t1, Eval.int_of_numeral t2);
   441         val res_int as (_, (i1', i2')) = Eval.cancel_int (i1, i2);
   442       in
   443         if (i1', i2') = (i1, i2) then NONE
   444         else
   445           let
   446             val res = TermC.mk_frac T res_int;
   447             val prop = HOLogic.Trueprop $ (HOLogic.mk_eq (t, res));
   448           in SOME (TermC.mk_thmid thmid (string_of_int i1) (string_of_int i2), prop) end
   449       end
   450     else NONE
   451   | eval_cancel _ _ _ _ = NONE;
   452 
   453 (* get the argument from a function-definition *)
   454 (*("argument_in" ,("Prog_Expr.argument_in", Prog_Expr.eval_argument_in "Prog_Expr.argument_in"))*)
   455 fun eval_argument_in _ "Prog_Expr.argument_in" 
   456 		 (t as (Const ("Prog_Expr.argument_in", _) $ (_(*f*) $ arg))) _ =
   457     if is_Free arg (*could be something to be simplified before*)
   458     then
   459       SOME (UnparseC.term t ^ " = " ^ UnparseC.term arg,
   460 	      HOLogic.Trueprop $ (TermC.mk_equality (t, arg)))
   461     else NONE
   462   | eval_argument_in _ _ _ _ = NONE;
   463 
   464 (* check if the function-identifier of the first argument matches 
   465    the function-identifier of the lhs of the second argument *)
   466 (*("sameFunId" ,("Prog_Expr.sameFunId", eval_same_funid "Prog_Expr.sameFunId"))*)
   467 fun eval_sameFunId _ "Prog_Expr.sameFunId" 
   468 		     (p as Const ("Prog_Expr.sameFunId",_) $  (f1 $ _) $ (Const ("HOL.eq", _) $ (f2 $ _) $ _)) _ =
   469     if f1 = f2 
   470     then SOME ((UnparseC.term p) ^ " = True",
   471 	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term True})))
   472     else SOME ((UnparseC.term p) ^ " = False",
   473 	       HOLogic.Trueprop $ (TermC.mk_equality (p, @{term False})))
   474 | eval_sameFunId _ _ _ _ = NONE;
   475 
   476 
   477 (*.from a list of fun-definitions "f x = ..." as 2nd argument
   478    filter the elements with the same fun-identfier in "f y"
   479    as the fst argument;
   480    this is, because Isabelles filter takes more than 1 sec.*)
   481 fun same_funid f1 (Const ("HOL.eq", _) $ (f2 $ _) $ _) = f1 = f2
   482   | same_funid f1 t = raise ERROR ("same_funid called with t = ("
   483 		  ^ UnparseC.term f1 ^ ") (" ^ UnparseC.term t ^ ")");
   484 (*("filter_sameFunId" ,("Prog_Expr.filter_sameFunId",
   485 		   eval_filter_sameFunId "Prog_Expr.filter_sameFunId"))*)
   486 fun eval_filter_sameFunId _ "Prog_Expr.filter_sameFunId" 
   487 		     (p as Const ("Prog_Expr.filter_sameFunId",_) $ 
   488 			(fid $ _) $ fs) _ =
   489     let val fs' = ((TermC.list2isalist HOLogic.boolT) o 
   490 		   (filter (same_funid fid))) (TermC.isalist2list fs)
   491     in SOME (UnparseC.term (TermC.mk_equality (p, fs')),
   492 	       HOLogic.Trueprop $ (TermC.mk_equality (p, fs'))) end
   493 | eval_filter_sameFunId _ _ _ _ = NONE;
   494 
   495 (* make a list of terms to a sum *)
   496 fun list2sum [] = raise ERROR ("list2sum called with []")
   497   | list2sum [s] = s
   498   | list2sum (s::ss) = 
   499     let
   500       fun sum su [s'] = Const ("Groups.plus_class.plus",
   501            [HOLogic.realT,HOLogic.realT] ---> HOLogic.realT) $ su $ s'
   502     	  | sum su (s'::ss') = sum (Const ("Groups.plus_class.plus",
   503            [HOLogic.realT,HOLogic.realT] ---> HOLogic.realT) $ su $ s') ss'
   504     	  | sum _ _ = raise ERROR "list2sum: pattern in fun.def is missing" 
   505     in sum s ss end;
   506 
   507 (* make a list of equalities to the sum of the lhs *)
   508 (*("boollist2sum"    ,("Prog_Expr.boollist2sum"    , eval_boollist2sum "")):calc*)
   509 fun eval_boollist2sum _ "Prog_Expr.boollist2sum" 
   510 		  (p as Const ("Prog_Expr.boollist2sum", _) $ (l as Const ("List.list.Cons", _) $ _ $ _)) _ =
   511     let
   512       val isal = TermC.isalist2list l
   513 	    val lhss = map lhs isal
   514 	    val sum = list2sum lhss
   515     in
   516       SOME ((UnparseC.term p) ^ " = " ^ (UnparseC.term sum),
   517 	      HOLogic.Trueprop $ (TermC.mk_equality (p, sum)))
   518     end
   519   | eval_boollist2sum _ _ _ _ = NONE;
   520 
   521 (**) end (*struct*)
   522 \<close> text \<open>
   523 open Prog_Expr
   524 \<close> ML \<open>
   525 \<close> ML \<open>
   526 \<close>
   527 
   528 subsection \<open>extend rule-set for evaluating pre-conditions and program-expressions\<close>
   529 ML \<open>
   530 val prog_expr = Rule_Set.append_rules "prog_expr" prog_expr [Rule.Eval ("Prog_Expr.rhs", Prog_Expr.eval_rhs "")];
   531 \<close> ML \<open>
   532 \<close> ML \<open>
   533 \<close>
   534 
   535 subsection \<open>setup for rule-sets and ML-functions\<close>
   536 setup \<open>KEStore_Elems.add_rlss [("prog_expr", (Context.theory_name @{theory}, prog_expr))]\<close>
   537 setup \<open>KEStore_Elems.add_calcs
   538   [("matches", ("Prog_Expr.matches", Prog_Expr.eval_matches "#matches_")),
   539     ("matchsub", ("Prog_Expr.matchsub", Prog_Expr.eval_matchsub "#matchsub_")),
   540     ("Vars", ("Prog_Expr.Vars", Prog_Expr.eval_var "#Vars_")),
   541     ("lhs", ("Prog_Expr.lhs", Prog_Expr.eval_lhs "")),
   542     ("rhs", ("Prog_Expr.rhs", Prog_Expr.eval_rhs ""))]\<close>
   543 (*\\------------------------- from Tools .thy-------------------------------------------------//*)
   544 ML \<open>
   545 \<close> ML \<open>
   546 \<close> ML \<open>
   547 \<close>
   548 
   549 end