Finite.thy
author lcp
Mon, 31 Oct 1994 17:17:48 +0100
changeset 154 c801110efa1b
parent 128 89669c58e506
permissions -rw-r--r--
HOL/ex/cla: proofs now use deepen_tac instead of best_tac HOL_dup_cs

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