def BooleanLattice(*args, **kwds): r""" This function is deprecated and will be removed in a future version of Sage. Please use ``Posets.BooleanLattice`` instead. TESTS:: sage: BooleanLattice(3) doctest:1: DeprecationWarning: BooleanLattice is deprecated, use Posets.BooleanLattice instead! Finite lattice containing 8 elements """ deprecation("%s is deprecated, use Posets.%s instead!" % \ ("BooleanLattice", "BooleanLattice")) return Posets.BooleanLattice(*args, **kwds)
def BooleanLattice(*args, **kwds): r""" This function is deprecated and will be removed in a future version of Sage. Please use ``Posets.BooleanLattice`` instead. TESTS:: sage: BooleanLattice(3) doctest:...: DeprecationWarning: BooleanLattice is deprecated, use Posets.BooleanLattice instead! See http://trac.sagemath.org/10998 for details. Finite lattice containing 8 elements """ deprecation(10998, "%s is deprecated, use Posets.%s instead!" % \ ("BooleanLattice", "BooleanLattice")) return Posets.BooleanLattice(*args, **kwds)