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