Exemplo n.º 1
0
def is_right_functional(mo: _mo.MathObject, _checked: bool = True) -> bool:
    r"""Return whether ``mo`` is :term:`right-functional` or `Undef()` if not applicable.

    Is implemented for :term:`relation`\s, :term:`clan`\s, :term:`multiclan`\s and :term:`set`\s
    of (sets of ...) clans. Is also defined (but not yet implemented) for any combination of sets
    or :term:`multiset`\s of relations.
    """
    # pylint: disable=too-many-return-statements
    if _checked:
        if not isinstance(mo, _mo.MathObject):
            return _undef.make_or_raise_undef()

    # Check cache status.
    if mo.cached_right_functional == _mo.CacheStatus.IS:
        return True
    if mo.cached_right_functional == _mo.CacheStatus.IS_NOT:
        return False
    if mo.cached_right_functional == _mo.CacheStatus.N_A:
        return _undef.make_or_raise_undef(2)

    # Check type (right-functional is only defined on Sets and Multisets) and algebra memberships.
    if not mo.is_set and not mo.is_multiset:
        mo.cache_right_functional(_mo.CacheStatus.N_A)
        return _undef.make_or_raise_undef(2)
    if _relations.is_member(mo):
        return _relations.is_right_functional(mo, _checked=False)
    if _clans.is_member(mo):
        return _clans.is_right_functional(mo, _checked=False)
    if _multiclans.is_member(mo):
        return _multiclans.is_right_functional(mo, _checked=False)

    # Check higher (not yet defined) algebras.
    right_functional = _is_powerset_property(mo, _clans.get_ground_set(),
                                             is_right_functional)
    if right_functional is not _undef.Undef():
        mo.cache_right_functional(_mo.CacheStatus.from_bool(right_functional))
        return right_functional

    # Nothing applied: 'right-functional' is not defined.
    mo.cache_right_functional(_mo.CacheStatus.N_A)
    return _undef.make_or_raise_undef(2)
Exemplo n.º 2
0
def is_right_functional(mo: _mo.MathObject, _checked: bool=True) -> bool:
    r"""Return whether ``mo`` is :term:`right-functional` or `Undef()` if not applicable.

    Is implemented for :term:`relation`\s, :term:`clan`\s, :term:`multiclan`\s and :term:`set`\s
    of (sets of ...) clans. Is also defined (but not yet implemented) for any combination of sets
    or :term:`multiset`\s of relations.
    """
    # pylint: disable=too-many-return-statements
    if _checked:
        if not isinstance(mo, _mo.MathObject):
            return _undef.make_or_raise_undef()

    # Check cache status.
    if mo.cached_right_functional == _mo.CacheStatus.IS:
        return True
    if mo.cached_right_functional == _mo.CacheStatus.IS_NOT:
        return False
    if mo.cached_right_functional == _mo.CacheStatus.N_A:
        return _undef.make_or_raise_undef(2)

    # Check type (right-functional is only defined on Sets and Multisets) and algebra memberships.
    if not mo.is_set and not mo.is_multiset:
        mo.cache_right_functional(_mo.CacheStatus.N_A)
        return _undef.make_or_raise_undef(2)
    if _relations.is_member(mo):
        return _relations.is_right_functional(mo, _checked=False)
    if _clans.is_member(mo):
        return _clans.is_right_functional(mo, _checked=False)
    if _multiclans.is_member(mo):
        return _multiclans.is_right_functional(mo, _checked=False)

    # Check higher (not yet defined) algebras.
    right_functional = _is_powerset_property(mo, _clans.get_ground_set(), is_right_functional)
    if right_functional is not _undef.Undef():
        mo.cache_right_functional(_mo.CacheStatus.from_bool(right_functional))
        return right_functional

    # Nothing applied: 'right-functional' is not defined.
    mo.cache_right_functional(_mo.CacheStatus.N_A)
    return _undef.make_or_raise_undef(2)