src/HOL/Vimage.thy
author wenzelm
Wed, 14 Jun 2000 17:59:53 +0200
changeset 9066 b1e874e38dab
parent 7515 0c05469cad57
child 10065 ddb3a014f721
permissions -rw-r--r--
theorems [cases type: bool] = case_split;

(*  Title:      HOL/Vimage
    ID:         $Id$
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
    Copyright   1998  University of Cambridge

Inverse image of a function
*)

Vimage = Set +

consts
  "-``"          :: ['a => 'b, 'b set] => ('a set)   (infixr 90)

defs
  vimage_def     "f-``B           == {x. f(x) : B}"

end