src/ZF/simpdata.ML
author paulson
Fri, 06 Jun 1997 12:48:21 +0200
changeset 3425 fc4ca570d185
parent 2876 02c12d4c8b97
child 3840 e0baea4d485a
permissions -rw-r--r--
Better miniscoping for bounded quantifiers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     1
(*  Title:      ZF/simpdata
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
    ID:         $Id$
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
    Copyright   1991  University of Cambridge
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1791
diff changeset
     6
Rewriting for ZF set theory: specialized extraction of rewrites from theorems
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1791
diff changeset
     9
(** Rewriting **)
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    11
local
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    12
  (*For proving rewrite rules*)
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    13
  fun prover s = (prove_goal ZF.thy s (fn _ => [Blast_tac 1]));
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    14
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    15
in
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    17
val ball_simps = map prover
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    18
    ["(ALL x:A. P(x) | Q)   <-> ((ALL x:A. P(x)) | Q)",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    19
     "(ALL x:A. P | Q(x))   <-> (P | (ALL x:A. Q(x)))",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    20
     "(ALL x:A. P --> Q(x)) <-> (P --> (ALL x:A. Q(x)))",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    21
     "(ALL x:A. P(x) --> Q) <-> ((EX x:A. P(x)) --> Q)",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    22
     "(ALL x:0.P(x)) <-> True",
2482
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    23
     "(ALL x:succ(i).P(x)) <-> P(i) & (ALL x:i.P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    24
     "(ALL x:cons(a,B).P(x)) <-> P(a) & (ALL x:B.P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    25
     "(ALL x:RepFun(A,f). P(x)) <-> (ALL y:A. P(f(y)))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    26
     "(ALL x:Union(A).P(x)) <-> (ALL y:A. ALL x:y. P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    27
     "(ALL x:Collect(A,Q).P(x)) <-> (ALL x:A. Q(x) --> P(x))"];
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    28
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    29
val ball_conj_distrib = 
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    30
    prover "(ALL x:A. P(x) & Q(x)) <-> ((ALL x:A. P(x)) & (ALL x:A. Q(x)))";
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    31
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    32
val bex_simps = map prover
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    33
    ["(EX x:A. P(x) & Q) <-> ((EX x:A. P(x)) & Q)",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    34
     "(EX x:A. P & Q(x)) <-> (P & (EX x:A. Q(x)))",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    35
     "(EX x:0.P(x)) <-> False",
2482
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    36
     "(EX x:succ(i).P(x)) <-> P(i) | (EX x:i.P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    37
     "(EX x:cons(a,B).P(x)) <-> P(a) | (EX x:B.P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    38
     "(EX x:RepFun(A,f). P(x)) <-> (EX y:A. P(f(y)))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    39
     "(EX x:Union(A).P(x)) <-> (EX y:A. EX x:y.  P(x))",
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    40
     "(EX x:Collect(A,Q).P(x)) <-> (EX x:A. Q(x) & P(x))"];
87383dd9f4b5 Default rewrite rules for quantification over Collect(A,P)
paulson
parents: 2469
diff changeset
    41
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    42
val bex_disj_distrib = 
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    43
    prover "(EX x:A. P(x) | Q(x)) <-> ((EX x:A. P(x)) | (EX x:A. Q(x)))";
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    44
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    45
val Rep_simps = map prover
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    46
    ["{x:0. P(x)} = 0",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    47
     "{x:A. False} = 0",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    48
     "{x:A. True} = A",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    49
     "RepFun(0,f) = 0",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    50
     "RepFun(succ(i),f) = cons(f(i), RepFun(i,f))",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    51
     "RepFun(cons(a,B),f) = cons(f(a), RepFun(B,f))"]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    52
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    53
val misc_simps = map prover
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    54
    ["0 Un A = A",  "A Un 0 = A",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    55
     "0 Int A = 0", "A Int 0 = 0",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    56
     "0-A = 0",     "A-0 = A",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    57
     "Union(0) = 0",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    58
     "Union(cons(b,A)) = b Un Union(A)",
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    59
     "Inter({b}) = b"]
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    60
3425
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    61
end;
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    62
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    63
Addsimps (ball_simps @ bex_simps @ Rep_simps @ misc_simps);
fc4ca570d185 Better miniscoping for bounded quantifiers
paulson
parents: 2876
diff changeset
    64
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    65
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    66
(** New version of mk_rew_rules **)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    67
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    68
(*Should False yield False<->True, or should it solve goals some other way?*)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    69
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    70
(*Analyse a theorem to atomic rewrite rules*)
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    71
fun atomize (conn_pairs, mem_pairs) th = 
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    72
  let fun tryrules pairs t =
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    73
          case head_of t of
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    74
              Const(a,_) => 
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    75
                (case assoc(pairs,a) of
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    76
                     Some rls => flat (map (atomize (conn_pairs, mem_pairs))
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    77
                                       ([th] RL rls))
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    78
                   | None     => [th])
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    79
            | _ => [th]
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    80
  in case concl_of th of 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    81
         Const("Trueprop",_) $ P => 
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    82
            (case P of
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    83
                 Const("op :",_) $ a $ b => tryrules mem_pairs b
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    84
               | Const("True",_)         => []
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    85
               | Const("False",_)        => []
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    86
               | A => tryrules conn_pairs A)
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    87
       | _                       => [th]
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    88
  end;
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    89
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    90
(*Analyse a rigid formula*)
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    91
val ZF_conn_pairs =
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    92
  [("Ball",     [bspec]), 
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    93
   ("All",      [spec]),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    94
   ("op -->",   [mp]),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    95
   ("op &",     [conjunct1,conjunct2])];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    96
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    97
(*Analyse a:b, where b is rigid*)
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
    98
val ZF_mem_pairs = 
1461
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
    99
  [("Collect",  [CollectD1,CollectD2]),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
   100
   ("op -",     [DiffD1,DiffD2]),
6bcb44e4d6e5 expanded tabs
clasohm
parents: 1036
diff changeset
   101
   ("op Int",   [IntD1,IntD2])];
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
   102
1036
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
   103
val ZF_atomize = atomize (ZF_conn_pairs, ZF_mem_pairs);
0d28f4bc8a44 Recoded function atomize so that new ways of creating
lcp
parents: 855
diff changeset
   104
2469
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1791
diff changeset
   105
simpset := !simpset setmksimps (map mk_meta_eq o ZF_atomize o gen_all);
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1791
diff changeset
   106
b50b8c0eec01 Implicit simpsets and clasets for FOL and ZF
paulson
parents: 1791
diff changeset
   107
val ZF_ss = !simpset;