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