src/HOL/AxClasses/Lattice/LatMorph.thy
author wenzelm
Mon, 15 Jan 1996 15:49:21 +0100
changeset 1440 de6f18da81bb
child 1573 6d66b59f94a9
permissions -rw-r--r--
added this stuff;

(*  Title:      LatMorph.thy
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen

Some lattice morphisms.

TODO:
  more morphisms (?)
  more theorems
*)

LatMorph = LatInsts +

consts
  is_mono       :: "('a::le => 'b::le) => bool"
  is_inf_morph  :: "('a::lattice => 'b::lattice) => bool"
  is_sup_morph  :: "('a::lattice => 'b::lattice) => bool"
  is_Inf_morph  :: "('a::clattice => 'b::clattice) => bool"
  is_Sup_morph  :: "('a::clattice => 'b::clattice) => bool"

defs
  is_mono_def       "is_mono f == ALL x y. x [= y --> f x [= f y"
  is_inf_morph_def  "is_inf_morph f == ALL x y. f (x && y) = f x && f y"
  is_sup_morph_def  "is_sup_morph f == ALL x y. f (x || y) = f x || f y"
  is_Inf_morph_def  "is_Inf_morph f == ALL A. f (Inf A) = Inf {f x |x. x:A}"
  is_Sup_morph_def  "is_Sup_morph f == ALL A. f (Sup A) = Sup {f x |x. x:A}"

end