src/HOL/AxClasses/Lattice/CLattice.ML
author paulson
Wed, 05 Aug 1998 10:57:25 +0200
changeset 5253 82a5ca6290aa
parent 5069 3ea049f7979d
child 5711 5a1cd4b4b20e
permissions -rw-r--r--
New record type of programs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     1
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     2
open CLattice;
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     3
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     4
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     5
(** basic properties of "Inf" and "Sup" **)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     6
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     7
(* unique existence *)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
     8
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
     9
Goalw [Inf_def] "is_Inf A (Inf A)";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    10
  by (rtac (ex_Inf RS spec RS selectI1) 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    11
qed "Inf_is_Inf";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    12
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    13
Goal "is_Inf A inf --> Inf A = inf";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    14
  by (rtac impI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    15
  by (rtac (is_Inf_uniq RS mp) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    16
  by (rtac conjI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    17
  by (rtac Inf_is_Inf 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    18
  by (assume_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    19
qed "Inf_uniq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    20
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    21
Goalw [Ex1_def] "ALL A. EX! inf::'a::clattice. is_Inf A inf";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    22
  by Safe_tac;
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    23
  by (Step_tac 1);
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    24
  by (Step_tac 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    25
  by (rtac Inf_is_Inf 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    26
  by (rtac (Inf_uniq RS mp RS sym) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    27
  by (assume_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    28
qed "ex1_Inf";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    29
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    30
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    31
Goalw [Sup_def] "is_Sup A (Sup A)";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    32
  by (rtac (ex_Sup RS spec RS selectI1) 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    33
qed "Sup_is_Sup";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    34
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    35
Goal "is_Sup A sup --> Sup A = sup";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    36
  by (rtac impI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    37
  by (rtac (is_Sup_uniq RS mp) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    38
  by (rtac conjI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    39
  by (rtac Sup_is_Sup 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    40
  by (assume_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    41
qed "Sup_uniq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    42
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    43
Goalw [Ex1_def] "ALL A. EX! sup::'a::clattice. is_Sup A sup";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    44
  by Safe_tac;
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    45
  by (Step_tac 1);
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    46
  by (Step_tac 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    47
  by (rtac Sup_is_Sup 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    48
  by (rtac (Sup_uniq RS mp RS sym) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    49
  by (assume_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    50
qed "ex1_Sup";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    51
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    52
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    53
(* "Inf" yields g.l.bs, "Sup" yields l.u.bs. --- in pieces *)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    54
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    55
val prems = goalw thy [Inf_def] "x:A ==> Inf A [= x";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    56
  by (cut_facts_tac prems 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    57
  by (rtac selectI2 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    58
  by (rtac Inf_is_Inf 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
    59
  by (rewtac is_Inf_def);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    60
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    61
qed "Inf_lb";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    62
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    63
val [prem] = goalw thy [Inf_def] "(!!x. x:A ==> z [= x) ==> z [= Inf A";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    64
  by (rtac selectI2 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    65
  by (rtac Inf_is_Inf 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
    66
  by (rewtac is_Inf_def);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    67
  by (Step_tac 1);
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    68
  by (Step_tac 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    69
  by (etac mp 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    70
  by (rtac ballI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    71
  by (etac prem 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    72
qed "Inf_ub_lbs";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    73
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    74
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    75
val prems = goalw thy [Sup_def] "x:A ==> x [= Sup A";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    76
  by (cut_facts_tac prems 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    77
  by (rtac selectI2 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    78
  by (rtac Sup_is_Sup 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
    79
  by (rewtac is_Sup_def);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    80
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    81
qed "Sup_ub";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    82
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    83
val [prem] = goalw thy [Sup_def] "(!!x. x:A ==> x [= z) ==> Sup A [= z";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    84
  by (rtac selectI2 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    85
  by (rtac Sup_is_Sup 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
    86
  by (rewtac is_Sup_def);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    87
  by (Step_tac 1);
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
    88
  by (Step_tac 1);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    89
  by (etac mp 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    90
  by (rtac ballI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    91
  by (etac prem 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    92
qed "Sup_lb_ubs";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    93
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    94
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    95
(** minorized Infs / majorized Sups **)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    96
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
    97
Goal "(x [= Inf A) = (ALL y:A. x [= y)";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
    98
  by (rtac iffI 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
    99
  (*==>*)
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   100
    by (rtac ballI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   101
    by (rtac (le_trans RS mp) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   102
    by (etac conjI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   103
    by (etac Inf_lb 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   104
  (*<==*)
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   105
    by (rtac Inf_ub_lbs 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   106
    by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   107
qed "le_Inf_eq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   108
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   109
Goal "(Sup A [= x) = (ALL y:A. y [= x)";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   110
  by (rtac iffI 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   111
  (*==>*)
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   112
    by (rtac ballI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   113
    by (rtac (le_trans RS mp) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   114
    by (rtac conjI 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   115
    by (etac Sup_ub 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   116
    by (assume_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   117
  (*<==*)
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   118
    by (rtac Sup_lb_ubs 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   119
    by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   120
qed "ge_Sup_eq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   121
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   122
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   123
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   124
(** Subsets and limits **)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   125
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   126
Goal "A <= B --> Inf B [= Inf A";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   127
  by (rtac impI 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   128
  by (stac le_Inf_eq 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   129
  by (rewtac Ball_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   130
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   131
  by (dtac subsetD 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   132
  by (assume_tac 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   133
  by (etac Inf_lb 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   134
qed "Inf_subset_antimon";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   135
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   136
Goal "A <= B --> Sup A [= Sup B";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   137
  by (rtac impI 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   138
  by (stac ge_Sup_eq 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   139
  by (rewtac Ball_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   140
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   141
  by (dtac subsetD 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   142
  by (assume_tac 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   143
  by (etac Sup_ub 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   144
qed "Sup_subset_mon";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   145
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   146
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   147
(** singleton / empty limits **)
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   148
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   149
Goal "Inf {x} = x";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   150
  by (rtac (Inf_uniq RS mp) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   151
  by (rewtac is_Inf_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   152
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   153
  by (rtac le_refl 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   154
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   155
qed "sing_Inf_eq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   156
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   157
Goal "Sup {x} = x";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   158
  by (rtac (Sup_uniq RS mp) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   159
  by (rewtac is_Sup_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   160
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   161
  by (rtac le_refl 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   162
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   163
qed "sing_Sup_eq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   164
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   165
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   166
Goal "Inf {} = Sup {x. True}";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   167
  by (rtac (Inf_uniq RS mp) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   168
  by (rewtac is_Inf_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   169
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   170
  by (rtac (sing_Sup_eq RS subst) 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   171
  back();
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   172
  by (rtac (Sup_subset_mon RS mp) 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   173
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   174
qed "empty_Inf_eq";
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   175
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4153
diff changeset
   176
Goal "Sup {} = Inf {x. True}";
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   177
  by (rtac (Sup_uniq RS mp) 1);
1465
5d7a7e439cec expanded tabs
clasohm
parents: 1440
diff changeset
   178
  by (rewtac is_Sup_def);
4153
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   179
  by Safe_tac;
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   180
  by (rtac (sing_Inf_eq RS subst) 1);
e534c4c32d54 Ran expandshort, especially to introduce Safe_tac
paulson
parents: 4091
diff changeset
   181
  by (rtac (Inf_subset_antimon RS mp) 1);
1899
0075a8d26a80 Classical tactics now use default claset.
berghofe
parents: 1465
diff changeset
   182
  by (Fast_tac 1);
1440
de6f18da81bb added this stuff;
wenzelm
parents:
diff changeset
   183
qed "empty_Sup_eq";