Finite.thy
author nipkow
Wed, 31 Aug 1994 16:25:19 +0200
changeset 132 47be9d22a0d6
parent 128 89669c58e506
permissions -rw-r--r--
Renamed a few types and vars

(*  Title: 	HOL/Finite.thy
    ID:         $Id$
    Author: 	Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1994  University of Cambridge

Finite powerset operator
*)

Finite = Lfp +
consts Fin :: "'a set => 'a set set"

inductive "Fin(A)"
  intrs
    emptyI  "{} : Fin(A)"
    insertI "[| a: A;  b: Fin(A) |] ==> insert(a,b) : Fin(A)"

end