src/HOL/simpdata.ML
author clasohm
Fri, 03 Mar 1995 12:02:25 +0100
changeset 923 ff1574a81019
child 941 f8a202891ac9
permissions -rw-r--r--
new version of HOL with curried function application
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title: 	HOL/simpdata.ML
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author: 	Tobias Nipkow
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     6
Instantiation of the generic simplifier
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
open Simplifier;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
local
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
fun prover s = prove_goal HOL.thy s (fn _ => [fast_tac HOL_cs 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    14
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
val P_imp_P_iff_True = prover "P --> (P = True)" RS mp;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
val P_imp_P_eq_True = P_imp_P_iff_True RS eq_reflection;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
val not_P_imp_P_iff_F = prover "~P --> (P = False)" RS mp;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
val not_P_imp_P_eq_False = not_P_imp_P_iff_F RS eq_reflection;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
fun atomize pairs =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
  let fun atoms th =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
        (case concl_of th of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    24
           Const("Trueprop",_) $ p =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
             (case head_of p of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
                Const(a,_) =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    27
                  (case assoc(pairs,a) of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    28
                     Some(rls) => flat (map atoms ([th] RL rls))
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    29
                   | None => [th])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
              | _ => [th])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
         | _ => [th])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
  in atoms end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
fun mk_meta_eq r = case concl_of r of
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
	Const("==",_)$_$_ => r
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
    |	_$(Const("op =",_)$_$_) => r RS eq_reflection
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
    |	_$(Const("not",_)$_) => r RS not_P_imp_P_eq_False
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
    |   _ => r RS P_imp_P_eq_True;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(* last 2 lines requires all formulae to be of the from Trueprop(.) *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
fun gen_all th = forall_elim_vars (#maxidx(rep_thm th)+1) th;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
val imp_cong = impI RSN
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
    (2, prove_goal HOL.thy "(P=P')--> (P'--> (Q=Q'))--> ((P-->Q) = (P'-->Q'))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
	(fn _=> [fast_tac HOL_cs 1]) RS mp RS mp);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
val o_apply = prove_goalw HOL.thy [o_def] "(f o g)(x) = f(g(x))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
 (fn _ => [rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    49
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    50
val simp_thms = map prover
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
 [ "(x=x) = True",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
   "(~True) = False", "(~False) = True", "(~ ~ P) = P",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
   "(~P) ~= P", "P ~= (~P)", "(P ~= Q) = (P = (~Q))",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
   "(True=P) = P", "(P=True) = P",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    55
   "(True --> P) = P", "(False --> P) = True", 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
   "(P --> True) = True", "(P --> P) = True",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
   "(P --> False) = (~P)", "(P --> ~P) = (~P)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
   "(P & True) = P", "(True & P) = P", 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
   "(P & False) = False", "(False & P) = False", "(P & P) = P",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
   "(P | True) = True", "(True | P) = True", 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
   "(P | False) = P", "(False | P) = P", "(P | P) = P",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
   "(!x.P) = P", "(? x.P) = P", "? x. x=t", "(? x. x=t & P(x)) = P(t)",
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
   "(P|Q --> R) = ((P-->R)&(Q-->R))" ];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    65
in
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    66
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
val meta_eq_to_obj_eq = prove_goal HOL.thy "x==y ==> x=y"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
  (fn [prem] => [rewtac prem, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
val eq_sym_conv = prover "(x=y) = (y=x)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
val conj_assoc = prover "((P&Q)&R) = (P&(Q&R))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
val if_True = prove_goalw HOL.thy [if_def] "if True x y = x"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    75
 (fn _=>[fast_tac (HOL_cs addIs [select_equality]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    76
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    77
val if_False = prove_goalw HOL.thy [if_def] "if False x y = y"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
 (fn _=>[fast_tac (HOL_cs addIs [select_equality]) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    80
val if_P = prove_goal HOL.thy "P ==> if P x y = x"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
 (fn [prem] => [ stac (prem RS eqTrueI) 1, rtac if_True 1 ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    83
val if_not_P = prove_goal HOL.thy "~P ==> if P x y = y"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
 (fn [prem] => [ stac (prem RS not_P_imp_P_iff_F) 1, rtac if_False 1 ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    86
val expand_if = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
    "P(if Q x y) = ((Q --> P(x)) & (~Q --> P(y)))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    88
 (fn _=> [ (res_inst_tac [("Q","Q")] (excluded_middle RS disjE) 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
	 rtac (if_P RS ssubst) 2,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
	 rtac (if_not_P RS ssubst) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
	 REPEAT(fast_tac HOL_cs 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    92
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    93
val if_bool_eq = prove_goal HOL.thy "if P Q R = ((P-->Q) & (~P-->R))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
  (fn _ => [rtac expand_if 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    95
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    96
infix addcongs;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
fun ss addcongs congs = ss addeqcongs (congs RL [eq_reflection]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
val mksimps_pairs =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
  [("op -->", [mp]), ("op &", [conjunct1,conjunct2]),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
   ("All", [spec]), ("True", []), ("False", []),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
   ("if", [if_bool_eq RS iffD1])];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
fun mksimps pairs = map mk_meta_eq o atomize pairs o gen_all;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   105
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   106
val HOL_ss = empty_ss
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
      setmksimps (mksimps mksimps_pairs)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   108
      setsolver (fn prems => resolve_tac (TrueI::refl::prems) ORELSE' atac
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
                             ORELSE' etac FalseE)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
      setsubgoaler asm_simp_tac
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
      addsimps ([if_True, if_False, o_apply, conj_assoc] @ simp_thms)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
      addcongs [imp_cong];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
fun split_tac splits =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
  mk_case_split_tac (meta_eq_to_obj_eq RS iffD2) (map mk_meta_eq splits);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   116
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   117
(* eliminiation of existential quantifiers in assumptions *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   118
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
val ex_all_equiv =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
  let val lemma1 = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
        "(? x. P(x) ==> PROP Q) ==> (!!x. P(x) ==> PROP Q)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
        (fn prems => [resolve_tac prems 1, etac exI 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
      val lemma2 = prove_goalw HOL.thy [Ex_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
        "(!!x. P(x) ==> PROP Q) ==> (? x. P(x) ==> PROP Q)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
        (fn prems => [REPEAT(resolve_tac prems 1)])
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   126
  in equal_intr lemma1 lemma2 end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   128
(* '&' congruence rule: not included by default!
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
   May slow rewrite proofs down by as much as 50% *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
val conj_cong = impI RSN
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
    (2, prove_goal HOL.thy "(P=P')--> (P'--> (Q=Q'))--> ((P&Q) = (P'&Q'))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
	(fn _=> [fast_tac HOL_cs 1]) RS mp RS mp);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
(** 'if' congruence rules: neither included by default! *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   136
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   137
(*Simplifies x assuming c and y assuming ~c*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
val if_cong = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
  "[| b=c; c ==> x=u; ~c ==> y=v |] ==> if b x y = if c u v"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
  (fn rew::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
   [stac rew 1, stac expand_if 1, stac expand_if 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   142
    fast_tac (HOL_cs addDs prems) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   143
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   144
(*Prevents simplification of x and y: much faster*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   145
val if_weak_cong = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
  "b=c ==> if b x y = if c x y"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   147
  (fn [prem] => [rtac (prem RS arg_cong) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   148
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   149
(*Prevents simplification of t: much faster*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
val let_weak_cong = prove_goal HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   151
  "a = b ==> (let x=a in t(x)) = (let x=b in t(x))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
  (fn [prem] => [rtac (prem RS arg_cong) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
end;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   155
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   156
fun prove nm thm  = qed_goal nm HOL.thy thm (fn _ => [fast_tac HOL_cs 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
prove "conj_commute" "(P&Q) = (Q&P)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
prove "conj_left_commute" "(P&(Q&R)) = (Q&(P&R))";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
val conj_comms = [conj_commute, conj_left_commute];
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   162
prove "conj_disj_distribL" "(P&(Q|R)) = (P&Q | P&R)";
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
prove "conj_disj_distribR" "((P|Q)&R) = (P&R | Q&R)";