src/ZF/Induct/Acc.thy
author wenzelm
Wed, 05 Dec 2001 15:45:24 +0100
changeset 12393 03c55bb0ee92
parent 12088 6f463d16cbd0
child 12560 5820841f21fd
permissions -rw-r--r--
tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     1
(*  Title:      ZF/ex/Acc.thy
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     2
    ID:         $Id$
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     3
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     5
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     6
Inductive definition of acc(r)
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     7
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     8
See Ch. Paulin-Mohring, Inductive Definitions in the System Coq.
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     9
Research Report 92-49, LIP, ENS Lyon.  Dec 1992.
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    10
*)
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    11
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    12
Acc = Main +
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    13
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    14
consts
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    15
  acc :: i=>i
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    16
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    17
inductive
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    18
  domains "acc(r)" <= "field(r)"
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    19
  intrs
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    20
    vimage  "[| r-``{a}: Pow(acc(r)); a \\<in> field(r) |] ==> a \\<in> acc(r)"
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    21
  monos      Pow_mono
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    22
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    23
end