Source code for algebraixlib.algebras.multisets

"""This module contains the :term:`algebra of multisets`."""

# $Id: multisets.py 22614 2015-07-15 18:14:53Z gfiedler $
# Copyright Algebraix Data Corporation 2015 - $Date: 2015-07-15 13:14:53 -0500 (Wed, 15 Jul 2015) $
#
# This file is part of algebraixlib <http://github.com/AlgebraixData/algebraixlib>.
#
# algebraixlib is free software: you can redistribute it and/or modify it under the terms of version
# 3 of the GNU Lesser General Public License as published by the Free Software Foundation.
#
# algebraixlib is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License along with algebraixlib.
# If not, see <http://www.gnu.org/licenses/>.
# --------------------------------------------------------------------------------------------------
from functools import partial

import algebraixlib.mathobjects as _mo
import algebraixlib.structure as _structure
from algebraixlib.undef import make_or_raise_undef as _make_or_raise_undef


[docs]class Algebra: """Provide the operations and relations that are members of the :term:`algebra of multisets`. This class contains only static member functions. Its main purpose is to provide a namespace for and highlight the operations and relations that belong to the algebra of multisets. All member functions are also available at the enclosing module scope. """ # -------------------------------------------------------------------------------------------------- # Binary algebra operations. @staticmethod
[docs] def union(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`binary union` of ``multiset1`` with ``multiset2``. :return: The union of ``multiset1`` and ``multiset2`` or `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) values = multiset1.data | multiset2.data return _mo.Multiset(values, direct_load=True)
@staticmethod
[docs] def intersect(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`binary intersection` of ``multiset1`` with ``multiset2``. :return: The intersection of ``multiset1`` and ``multiset2`` or `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) values = multiset1.data & multiset2.data return _mo.Multiset(values)
@staticmethod
[docs] def minus(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`difference` of ``multiset1`` and ``multiset2``. :return: The difference of ``multiset1`` and ``multiset2`` or `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) values = multiset1.data - multiset2.data return _mo.Multiset(values)
@staticmethod
[docs] def addition(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`addition` of ``multiset1`` and ``multiset2``. :return: The addition of ``multiset1`` and ``multiset2`` or `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) values = multiset1.data + multiset2.data return _mo.Multiset(values)
@staticmethod
[docs] def substrict(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`substriction` of ``multiset1`` and ``multiset2``. :return: ``multiset1`` if ``multiset1`` is a :term:`subset` of ``multiset2`` or `Undef()` if not. Also return `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Set`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) if not is_subset_of(multiset1, multiset2, _checked=False): return _make_or_raise_undef(2) return multiset1
@staticmethod
[docs] def superstrict(multiset1: 'P( M x N )', multiset2: 'P( M X N )', _checked=True) -> 'P( M X N )': """Return the :term:`superstriction` of ``multiset1`` and ``multiset2``. :return: ``multiset1`` if ``multiset1`` is a :term:`superset` of ``multiset2`` or `Undef()` if not. Also return `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) if not is_superset_of(multiset1, multiset2, _checked=False): return _make_or_raise_undef(2) return multiset1 # -------------------------------------------------------------------------------------------------- # Algebra relations.
@staticmethod
[docs] def is_subset_of(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> bool: """Return whether ``multiset1`` is a :term:`subset` of ``multiset2``. :return: ``True`` if ``multiset1`` is a subset of ``multiset2``, ``False`` if not. Return `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) for key in multiset1.data.keys(): if not multiset1.data[key] <= multiset2.data[key]: return False return True
@staticmethod
[docs] def is_superset_of(multiset1: 'P( M x N )', multiset2: 'P( M x N )', _checked=True) -> bool: """Return whether ``multiset1`` is a :term:`superset` of ``multiset2``. :return: ``True`` if ``multiset1`` is a superset of ``multiset2``, ``False`` if not. Return `Undef()` if ``multiset1`` or ``multiset2`` are not instances of :class:`~.Multiset`. .. note:: Reasonably up to date up to here. I haven't yet worked on the rest. """ if _checked: if not is_member(multiset1): return _make_or_raise_undef() if not is_member(multiset2): return _make_or_raise_undef() else: assert is_member(multiset1) assert is_member(multiset2) for key in multiset2.data.keys(): if not multiset1.data[key] >= multiset2.data[key]: return False return True
union = Algebra.union intersect = Algebra.intersect minus = Algebra.minus addition = Algebra.addition substrict = Algebra.substrict superstrict = Algebra.superstrict is_subset_of = Algebra.is_subset_of is_superset_of = Algebra.is_superset_of # -------------------------------------------------------------------------------------------------- # Metadata functions.
[docs]def get_name() -> str: """Return the name and :term:`ground set` of this :term:`algebra` in string form.""" return 'Multisets(M): {ground_set}'.format(ground_set=str(get_ground_set()))
[docs]def get_ground_set() -> _structure.Structure: """Return the :term:`ground set` of this :term:`algebra`.""" return _structure.PowerSet(_structure.CartesianProduct(_structure.GenesisSetM(), _structure.GenesisSetN()))
[docs]def get_absolute_ground_set() -> _structure.Structure: """Return the :term:`absolute ground set` of this :term:`algebra`.""" return _structure.PowerSet(_structure.CartesianProduct(_structure.GenesisSetA(), _structure.GenesisSetN()))
[docs]def is_member(obj: _mo.MathObject) -> bool: """Return ``True`` if ``obj`` is a member of the :term:`ground set` of this :term:`algebra`. :return: ``True`` if ``obj`` is an instance of :class:`~.Multiset`. """ _mo.raise_if_not_mathobject(obj) return isinstance(obj, _mo.Multiset)
[docs]def is_absolute_member(obj: _mo.MathObject) -> bool: """Return ``True`` if ``obj`` is a member of the :term:`absolute ground set` of this algebra. :return: ``True`` if ``obj`` is an :term:`absolute set`. .. note:: This function calls :meth:`~.MathObject.get_ground_set` on ``obj``.""" _mo.raise_if_not_mathobject(obj) return obj.get_ground_set().is_subset(get_absolute_ground_set()) # -------------------------------------------------------------------------------------------------- # Related operations, not formally part of the algebra.
[docs]def demultify(multiset: 'P( M x N )', _checked=True) -> 'P( M )': if _checked: if not is_member(multiset): return _make_or_raise_undef() else: assert is_member(multiset) return _mo.Set(multiset.data.keys(), direct_load=True)
[docs]def big_union(multiset: 'PP( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`union` of all members of ``multiset``. :return: The :term:`union` of all members of ``multiset`` or `Undef()` if ``multiset`` or any of its members are not instances of :class:`~.Multiset`. """ if _checked: if not isinstance(multiset, _mo.Set): return _make_or_raise_undef() for element in multiset: if not is_member(element): return _make_or_raise_undef() else: assert isinstance(multiset, _mo.Set) return _extend_binary_operation(multiset, partial(union, _checked=False))
[docs]def big_intersect(multisets: 'PP( M x N )', _checked=True) -> 'P( M x N )': """Return the :term:`intersection` of all members of ``multiset``. :return: The :term:`intersection` of all members of ``multiset`` or `Undef()` if ``multiset`` or any of its members are not instances of :class:`~.Multiset`. """ if _checked: if not isinstance(multisets, _mo.Set): return _make_or_raise_undef() for element in multisets: if not is_member(element): return _make_or_raise_undef() else: assert isinstance(multisets, _mo.Set) return _extend_binary_operation(multisets, partial(intersect, _checked=False))
def _extend_binary_operation(multiset: 'PP( M x N )', binary_op): """Extend a binary operation ``binary_op`` and apply it to all members of ``multiset`` inside this ``set``.""" if multiset.is_empty: return multiset elem_itr = iter(multiset) element = next(elem_itr) assert is_member(element) result = element for element in elem_itr: assert is_member(element) result = binary_op(result, element) return result