Finite.thy
author wenzelm
Wed, 14 Dec 1994 10:32:07 +0100
changeset 201 4d0545e93c0d
parent 128 89669c58e506
permissions -rw-r--r--
improved primrec: now calls store_thm;

(*  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