版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

MeetSemilattice.js 456 B

1234567891011121314
  1. "use strict";
  2. /**
  3. * A meet-semilattice (or lower semilattice) is a semilattice whose operation is called `meet`, and which can be thought
  4. * of as a greatest lower bound.
  5. *
  6. * A `MeetSemilattice` must satisfy the following laws:
  7. *
  8. * - Associativity: `a ∧ (b ∧ c) <-> (a ∧ b) ∧ c`
  9. * - Commutativity: `a ∧ b <-> b ∧ a`
  10. * - Idempotency: `a ∧ a <-> a`
  11. *
  12. * @since 2.0.0
  13. */
  14. Object.defineProperty(exports, "__esModule", { value: true });