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