src/HOL/HOL.ML
author paulson
Fri, 28 Jun 1996 11:10:32 +0200
changeset 1835 07eee14f5bd4
parent 1725 8b7414384396
child 1840 149b2e69633e
permissions -rw-r--r--
Restored warning comment
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     1
(*  Title:      HOL/HOL.ML
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     3
    Author:     Tobias Nipkow
923
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
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
     6
For HOL.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
Derived rules from Appendix of Mike Gordons HOL Report, Cambridge TR 68 
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
open HOL;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    11
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
(** Equality **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    14
section "=";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    15
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    16
qed_goal "sym" HOL.thy "s=t ==> t=s"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    17
 (fn prems => [cut_facts_tac prems 1, etac subst 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    18
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    19
(*calling "standard" reduces maxidx to 0*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    20
bind_thm ("ssubst", (sym RS subst));
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    21
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    22
qed_goal "trans" HOL.thy "[| r=s; s=t |] ==> r=t"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    23
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    24
        [rtac subst 1, resolve_tac prems 1, resolve_tac prems 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    25
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    26
(*Useful with eresolve_tac for proving equalties from known equalities.
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    27
        a = b
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    28
        |   |
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    29
        c = d   *)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    30
qed_goal "box_equals" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
    "[| a=b;  a=c;  b=d |] ==> c=d"  
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
  [ (rtac trans 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    34
    (rtac trans 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
    (rtac sym 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    36
    (REPEAT (resolve_tac prems 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    37
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    38
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
(** Congruence rules for meta-application **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    40
section "Congruence";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    42
(*similar to AP_THM in Gordon's HOL*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
qed_goal "fun_cong" HOL.thy "(f::'a=>'b) = g ==> f(x)=g(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    44
  (fn [prem] => [rtac (prem RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    45
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    46
(*similar to AP_TERM in Gordon's HOL and FOL's subst_context*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    47
qed_goal "arg_cong" HOL.thy "x=y ==> f(x)=f(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    48
 (fn [prem] => [rtac (prem RS subst) 1, 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
qed_goal "cong" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
   "[| f = g; (x::'a) = y |] ==> f(x) = g(y)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    52
 (fn [prem1,prem2] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    53
   [rtac (prem1 RS subst) 1, rtac (prem2 RS subst) 1, rtac refl 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    55
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    56
(** Equality of booleans -- iff **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    57
section "iff";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    59
qed_goal "iffI" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    60
   "[| P ==> Q;  Q ==> P |] ==> P=Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
 (fn prems=> [ (REPEAT (ares_tac (prems@[impI, iff RS mp RS mp]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    62
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    63
qed_goal "iffD2" HOL.thy "[| P=Q; Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    64
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
    65
        [rtac ssubst 1, resolve_tac prems 1, resolve_tac prems 1]);
923
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 iffD1 = sym RS iffD2;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
qed_goal "iffE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
    "[| P=Q; [| P --> Q; Q --> P |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    71
 (fn [p1,p2] => [REPEAT(ares_tac([p1 RS iffD2, p1 RS iffD1, p2, impI])1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    72
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    73
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    74
(** True **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    75
section "True";
923
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
qed_goalw "TrueI" HOL.thy [True_def] "True"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    78
  (fn _ => [rtac refl 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
qed_goal "eqTrueI " HOL.thy "P ==> P=True" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    81
 (fn prems => [REPEAT(resolve_tac ([iffI,TrueI]@prems) 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
qed_goal "eqTrueE" HOL.thy "P=True ==> P" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    84
 (fn prems => [REPEAT(resolve_tac (prems@[TrueI,iffD2]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    86
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    87
(** Universal quantifier **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
    88
section "!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    89
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    90
qed_goalw "allI" HOL.thy [All_def] "(!!x::'a. P(x)) ==> !x. P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    91
 (fn prems => [resolve_tac (prems RL [eqTrueI RS ext]) 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
qed_goalw "spec" HOL.thy [All_def] "! x::'a.P(x) ==> P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    94
 (fn prems => [rtac eqTrueE 1, resolve_tac (prems RL [fun_cong]) 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
qed_goal "allE" HOL.thy "[| !x.P(x);  P(x) ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    97
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    98
  [ (REPEAT (resolve_tac (prems @ [major RS spec]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    99
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   100
qed_goal "all_dupE" HOL.thy 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   101
    "[| ! x.P(x);  [| P(x); ! x.P(x) |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   102
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   103
  [ (REPEAT (resolve_tac (prems @ (prems RL [spec])) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   104
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
(** False ** Depends upon spec; it is impossible to do propositional logic
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
             before quantifiers! **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   108
section "False";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   109
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   110
qed_goalw "FalseE" HOL.thy [False_def] "False ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   111
 (fn [major] => [rtac (major RS spec) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   112
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   113
qed_goal "False_neq_True" HOL.thy "False=True ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   114
 (fn [prem] => [rtac (prem RS eqTrueE RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   115
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
(** Negation **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   118
section "~";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   119
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   120
qed_goalw "notI" HOL.thy [not_def] "(P ==> False) ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   121
 (fn prems=> [rtac impI 1, eresolve_tac prems 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   122
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   123
qed_goalw "notE" HOL.thy [not_def] "[| ~P;  P |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   124
 (fn prems => [rtac (prems MRS mp RS FalseE) 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   125
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   126
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   127
(** Implication **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   128
section "-->";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   129
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   130
qed_goal "impE" HOL.thy "[| P-->Q;  P;  Q ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   131
 (fn prems=> [ (REPEAT (resolve_tac (prems@[mp]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   132
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   133
(* Reduces Q to P-->Q, allowing substitution in P. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   134
qed_goal "rev_mp" HOL.thy "[| P;  P --> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   135
 (fn prems=>  [ (REPEAT (resolve_tac (prems@[mp]) 1)) ]);
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
qed_goal "contrapos" HOL.thy "[| ~Q;  P==>Q |] ==> ~P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   138
 (fn [major,minor]=> 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   139
  [ (rtac (major RS notE RS notI) 1), 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   140
    (etac minor 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   141
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   142
qed_goal "rev_contrapos" HOL.thy "[| P==>Q; ~Q |] ==> ~P"
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   143
 (fn [major,minor]=> 
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   144
  [ (rtac (minor RS contrapos) 1), (etac major 1) ]);
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   145
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   146
(* ~(?t = ?s) ==> ~(?s = ?t) *)
1334
32a9fde85699 added rev_contrapos
nipkow
parents: 923
diff changeset
   147
bind_thm("not_sym", sym COMP rev_contrapos);
923
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
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   150
(** Existential quantifier **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   151
section "?";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   152
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   153
qed_goalw "exI" HOL.thy [Ex_def] "P(x) ==> ? x::'a.P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   154
 (fn prems => [rtac selectI 1, resolve_tac prems 1]);
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
qed_goalw "exE" HOL.thy [Ex_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   157
  "[| ? x::'a.P(x); !!x. P(x) ==> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   158
  (fn prems => [REPEAT(resolve_tac prems 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   159
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   160
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   161
(** Conjunction **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   162
section "&";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   163
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   164
qed_goalw "conjI" HOL.thy [and_def] "[| P; Q |] ==> P&Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   165
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   166
  [REPEAT (resolve_tac (prems@[allI,impI]) 1 ORELSE etac (mp RS mp) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   167
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   168
qed_goalw "conjunct1" HOL.thy [and_def] "[| P & Q |] ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   169
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   170
   [resolve_tac (prems RL [spec] RL [mp]) 1, REPEAT(ares_tac [impI] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   171
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   172
qed_goalw "conjunct2" HOL.thy [and_def] "[| P & Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   173
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   174
   [resolve_tac (prems RL [spec] RL [mp]) 1, REPEAT(ares_tac [impI] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   175
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   176
qed_goal "conjE" HOL.thy "[| P&Q;  [| P; Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   177
 (fn prems =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   178
         [cut_facts_tac prems 1, resolve_tac prems 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   179
          etac conjunct1 1, etac conjunct2 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   180
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   181
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   182
(** Disjunction *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   183
section "|";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   184
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   185
qed_goalw "disjI1" HOL.thy [or_def] "P ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   186
 (fn [prem] => [REPEAT(ares_tac [allI,impI, prem RSN (2,mp)] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   187
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   188
qed_goalw "disjI2" HOL.thy [or_def] "Q ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   189
 (fn [prem] => [REPEAT(ares_tac [allI,impI, prem RSN (2,mp)] 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   190
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   191
qed_goalw "disjE" HOL.thy [or_def] "[| P | Q; P ==> R; Q ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   192
 (fn [a1,a2,a3] =>
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   193
        [rtac (mp RS mp) 1, rtac spec 1, rtac a1 1,
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   194
         rtac (a2 RS impI) 1, assume_tac 1, rtac (a3 RS impI) 1, assume_tac 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   195
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   196
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   197
(** CCONTR -- classical logic **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   198
section "classical logic";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   199
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   200
qed_goalw "classical" HOL.thy [not_def]  "(~P ==> P) ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   201
 (fn [prem] =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   202
   [rtac (True_or_False RS (disjE RS eqTrueE)) 1,  assume_tac 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   203
    rtac (impI RS prem RS eqTrueI) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   204
    etac subst 1,  assume_tac 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   205
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   206
val ccontr = FalseE RS classical;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   207
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   208
(*Double negation law*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   209
qed_goal "notnotD" HOL.thy "~~P ==> P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   210
 (fn [major]=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   211
  [ (rtac classical 1), (eresolve_tac [major RS notE] 1) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   212
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   213
qed_goal "contrapos2" HOL.thy "[| Q; ~ P ==> ~ Q |] ==> P" (fn [p1,p2] => [
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   214
	rtac classical 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   215
	dtac p2 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   216
	etac notE 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   217
	rtac p1 1]);
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   218
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   219
qed_goal "swap2" HOL.thy "[| P;  Q ==> ~ P |] ==> ~ Q" (fn [p1,p2] => [
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   220
	rtac notI 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   221
	dtac p2 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   222
	etac notE 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   223
	rtac p1 1]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   224
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   225
(** Unique existence **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   226
section "?!";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   227
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   228
qed_goalw "ex1I" HOL.thy [Ex1_def]
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   229
	    "[| P(a);  !!x. P(x) ==> x=a |] ==> ?! x. P(x)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   230
 (fn prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   231
  [REPEAT (ares_tac (prems@[exI,conjI,allI,impI]) 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   232
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   233
qed_goalw "ex1E" HOL.thy [Ex1_def]
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   234
    "[| ?! x.P(x);  !!x. [| P(x);  ! y. P(y) --> y=x |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   235
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   236
  [rtac (major RS exE) 1, REPEAT (etac conjE 1 ORELSE ares_tac prems 1)]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   237
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   238
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   239
(** Select: Hilbert's Epsilon-operator **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   240
section "@";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   241
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   242
(*Easier to apply than selectI: conclusion has only one occurrence of P*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   243
qed_goal "selectI2" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   244
    "[| P(a);  !!x. P(x) ==> Q(x) |] ==> Q(@x.P(x))"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   245
 (fn prems => [ resolve_tac prems 1, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   246
                rtac selectI 1, 
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   247
                resolve_tac prems 1 ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   248
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   249
qed_goal "select_equality" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   250
    "[| P(a);  !!x. P(x) ==> x=a |] ==> (@x.P(x)) = a"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   251
 (fn prems => [ rtac selectI2 1, 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   252
                REPEAT (ares_tac prems 1) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   253
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   254
qed_goal "select_eq_Ex" HOL.thy "P (@ x. P x) =  (? x. P x)" (fn prems => [
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   255
        rtac iffI 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   256
        etac exI 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   257
        etac exE 1,
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   258
        etac selectI 1]);
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   259
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   260
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   261
(** Classical intro rules for disjunction and existential quantifiers *)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   262
section "classical intro rules";
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   263
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   264
qed_goal "disjCI" HOL.thy "(~Q ==> P) ==> P|Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   265
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   266
  [ (rtac classical 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   267
    (REPEAT (ares_tac (prems@[disjI1,notI]) 1)),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   268
    (REPEAT (ares_tac (prems@[disjI2,notE]) 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   269
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   270
qed_goal "excluded_middle" HOL.thy "~P | P"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   271
 (fn _ => [ (REPEAT (ares_tac [disjCI] 1)) ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   272
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   273
(*For disjunctive case analysis*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   274
fun excluded_middle_tac sP =
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   275
    res_inst_tac [("Q",sP)] (excluded_middle RS disjE);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   276
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   277
(*Classical implies (-->) elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   278
qed_goal "impCE" HOL.thy "[| P-->Q; ~P ==> R; Q ==> R |] ==> R" 
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   279
 (fn major::prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   280
  [ rtac (excluded_middle RS disjE) 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   281
    REPEAT (DEPTH_SOLVE_1 (ares_tac (prems @ [major RS mp]) 1))]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   282
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   283
(*Classical <-> elimination. *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   284
qed_goal "iffCE" HOL.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   285
    "[| P=Q;  [| P; Q |] ==> R;  [| ~P; ~Q |] ==> R |] ==> R"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   286
 (fn major::prems =>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   287
  [ (rtac (major RS iffE) 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   288
    (REPEAT (DEPTH_SOLVE_1 
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   289
        (eresolve_tac ([asm_rl,impCE,notE]@prems) 1))) ]);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   290
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   291
qed_goal "exCI" HOL.thy "(! x. ~P(x) ==> P(a)) ==> ? x.P(x)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   292
 (fn prems=>
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   293
  [ (rtac ccontr 1),
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   294
    (REPEAT (ares_tac (prems@[exI,allI,notI,notE]) 1))  ]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   295
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   296
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   297
(* case distinction *)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   298
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   299
qed_goal "case_split_thm" HOL.thy "[| P ==> Q; ~P ==> Q |] ==> Q"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   300
  (fn [p1,p2] => [cut_facts_tac [excluded_middle] 1, etac disjE 1,
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   301
                  etac p2 1, etac p1 1]);
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   302
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   303
fun case_tac a = res_inst_tac [("P",a)] case_split_thm;
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   304
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   305
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   306
(** Standard abbreviations **)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   307
1672
2c109cd2fdd0 repaired critical proofs depending on the order inside non-confluent SimpSets,
oheimb
parents: 1668
diff changeset
   308
fun stac th = CHANGED o rtac (th RS ssubst);
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   309
fun strip_tac i = REPEAT(resolve_tac [impI,allI] i); 
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   310
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   311
(** strip proved goal while preserving !-bound var names **)
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   312
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   313
local
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   314
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   315
(* Use XXX to avoid forall_intr failing because of duplicate variable name *)
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   316
val myspec = read_instantiate [("P","?XXX")] spec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   317
val _ $ (_ $ (vx as Var(_,vxT))) = concl_of myspec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   318
val cvx = cterm_of (#sign(rep_thm myspec)) vx;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   319
val aspec = forall_intr cvx myspec;
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   320
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   321
in
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   322
1515
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   323
fun RSspec th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   324
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   325
     _ $ (Const("All",_) $ Abs(a,_,_)) =>
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   326
         let val ca = cterm_of (#sign(rep_thm th)) (Var((a,0),vxT))
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   327
         in th RS forall_elim ca aspec end
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   328
  | _ => raise THM("RSspec",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   329
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   330
fun RSmp th =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   331
  (case concl_of th of
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   332
     _ $ (Const("op -->",_)$_$_) => th RS mp
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   333
  | _ => raise THM("RSmp",0,[th]));
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   334
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   335
fun normalize_thm funs =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   336
let fun trans [] th = th
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   337
      | trans (f::fs) th = (trans funs (f th)) handle THM _ => trans fs th
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   338
in trans funs end;
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   339
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   340
fun qed_spec_mp name =
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   341
  let val thm = normalize_thm [RSspec,RSmp] (result())
4ed79ebab64d Introduced normalize_thm into HOL.ML
nipkow
parents: 1485
diff changeset
   342
  in bind_thm(name, thm) end;
1485
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   343
240cc98b94a7 Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents: 1465
diff changeset
   344
end;
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   345
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   346
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   347
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   348
(*** Load simpdata.ML to be able to initialize HOL's simpset ***)
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   349
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   350
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   351
(** Applying HypsubstFun to generate hyp_subst_tac **)
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   352
section "Classical Reasoner";
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   353
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   354
structure Hypsubst_Data =
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   355
  struct
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   356
  structure Simplifier = Simplifier
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   357
  (*Take apart an equality judgement; otherwise raise Match!*)
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   358
  fun dest_eq (Const("Trueprop",_) $ (Const("op =",_)  $ t $ u)) = (t,u);
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   359
  val eq_reflection = eq_reflection
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   360
  val imp_intr = impI
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   361
  val rev_mp = rev_mp
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   362
  val subst = subst
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   363
  val sym = sym
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   364
  end;
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   365
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   366
structure Hypsubst = HypsubstFun(Hypsubst_Data);
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   367
open Hypsubst;
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   368
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   369
(*** Applying ClassicalFun to create a classical prover ***)
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   370
structure Classical_Data = 
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   371
  struct
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   372
  val sizef     = size_of_thm
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   373
  val mp        = mp
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   374
  val not_elim  = notE
5d7a7e439cec expanded tabs
clasohm
parents: 1455
diff changeset
   375
  val classical = classical
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   376
  val hyp_subst_tacs=[hyp_subst_tac]
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   377
  end;
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   378
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   379
structure Classical = ClassicalFun(Classical_Data);
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   380
open Classical;
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   381
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   382
(*Propositional rules*)
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   383
val prop_cs = empty_cs addSIs [refl,TrueI,conjI,disjCI,impI,notI,iffI]
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   384
                       addSEs [conjE,disjE,impCE,FalseE,iffE];
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   385
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   386
(*Quantifier rules*)
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   387
val HOL_cs = prop_cs addSIs [allI] addIs [exI,ex1I]
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   388
                     addSEs [exE,ex1E] addEs [allE];
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   389
1725
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   390
exception CS_DATA of claset;
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   391
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   392
let fun merge [] = CS_DATA empty_cs
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   393
      | merge cs = let val cs = map (fn CS_DATA x => x) cs;
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   394
                   in CS_DATA (foldl merge_cs (hd cs, tl cs)) end;
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   395
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   396
    fun put (CS_DATA cs) = claset := cs;
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   397
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   398
    fun get () = CS_DATA (!claset);
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   399
in add_thydata "HOL"
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   400
     ("claset", ThyMethods {merge = merge, put = put, get = get})
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   401
end;
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   402
8b7414384396 Added function for storing default claset in theory.
berghofe
parents: 1672
diff changeset
   403
claset := HOL_cs;
1660
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   404
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   405
section "Simplifier";
8cb42cd97579 *** empty log message ***
oheimb
parents: 1657
diff changeset
   406
1338
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   407
use     "simpdata.ML";
d2fc3bfaee7f changed simpset of "HOL"
clasohm
parents: 1334
diff changeset
   408
simpset := HOL_ss;
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   409
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   410
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   411
(** Install simpsets and datatypes in theory structure **)
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   412
exception SS_DATA of simpset;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   413
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   414
let fun merge [] = SS_DATA empty_ss
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   415
      | merge ss = let val ss = map (fn SS_DATA x => x) ss;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   416
                   in SS_DATA (foldl merge_ss (hd ss, tl ss)) end;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   417
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   418
    fun put (SS_DATA ss) = simpset := ss;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   419
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   420
    fun get () = SS_DATA (!simpset);
1657
a7a6c3fb3cdd changed first parameter of add_thydata and get_thydata
clasohm
parents: 1515
diff changeset
   421
in add_thydata "HOL"
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   422
     ("simpset", ThyMethods {merge = merge, put = put, get = get})
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   423
end;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   424
1668
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   425
type dtype_info = {case_const:term, case_rewrites:thm list,
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   426
                   constructors:term list, nchotomy:thm, case_cong:thm};
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   427
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   428
exception DT_DATA of (string * dtype_info) list;
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   429
val datatypes = ref [] : (string * dtype_info) list ref;
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   430
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   431
let fun merge [] = DT_DATA []
1668
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   432
      | merge ds =
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   433
          let val ds = map (fn DT_DATA x => x) ds;
8ead1fe65aad added Konrad's code for the datatype package
clasohm
parents: 1660
diff changeset
   434
          in DT_DATA (foldl (gen_union eq_fst) (hd ds, tl ds)) end;
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   435
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   436
    fun put (DT_DATA ds) = datatypes := ds;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   437
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   438
    fun get () = DT_DATA (!datatypes);
1657
a7a6c3fb3cdd changed first parameter of add_thydata and get_thydata
clasohm
parents: 1515
diff changeset
   439
in add_thydata "HOL"
1455
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   440
     ("datatypes", ThyMethods {merge = merge, put = put, get = get})
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   441
end;
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   442
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   443
52a0271621f3 changed the way simpsets and information about datatypes are stored
clasohm
parents: 1338
diff changeset
   444
add_thy_reader_file "thy_data.ML";