preface icon indicating copy to clipboard operation
preface copied to clipboard

Meet Semi Lattice

Open gr-im opened this issue 4 years ago • 0 comments

A Meet Semi Lattice capture the notion of a set with "least lower bound"

Operation

  • val meet : t -> t -> t

Laws:

  • associativity : meet a (meet b c) = meet (meet a b) c
  • commutativity: meet a b = meet b a
  • idempotency: meet a a = a

Suggested incarnation:

  • Bool

gr-im avatar Nov 25 '21 22:11 gr-im