Finite.thy
author lcp
Fri, 14 Apr 1995 11:23:33 +0200
changeset 248 c3913a79b6ae
parent 128 89669c58e506
permissions -rw-r--r--
Simplified some proofs and made them work for new hyp_subst_tac.

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