modulo


Namemodulo JSON
Version 2.1.0 PyPI version JSON
download
home_page
SummaryPure-Python library for working with modular arithmetic, congruence classes, and finite fields.
upload_time2023-06-03 03:58:50
maintainer
docs_urlNone
authorAndrei Lapets
requires_python>=3.7
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ======
modulo
======

Pure-Python library for working with modular arithmetic, congruence classes, and finite fields.

|pypi| |readthedocs| |actions| |coveralls|

.. |pypi| image:: https://badge.fury.io/py/modulo.svg
   :target: https://badge.fury.io/py/modulo
   :alt: PyPI version and link.

.. |readthedocs| image:: https://readthedocs.org/projects/modulo-lib/badge/?version=latest
   :target: https://modulo-lib.readthedocs.io/en/latest/?badge=latest
   :alt: Read the Docs documentation status.

.. |actions| image:: https://github.com/lapets/modulo/workflows/lint-test-cover-docs/badge.svg
   :target: https://github.com/lapets/modulo/actions/workflows/lint-test-cover-docs.yml
   :alt: GitHub Actions status.

.. |coveralls| image:: https://coveralls.io/repos/github/lapets/modulo/badge.svg?branch=main
   :target: https://coveralls.io/github/lapets/modulo?branch=main
   :alt: Coveralls test coverage summary.

Purpose
-------
The library allows users to work with congruence classes (including finite field elements) as objects, with support for many common operations.

Installation and Usage
----------------------
This library is available as a `package on PyPI <https://pypi.org/project/modulo>`__:

.. code-block:: bash

    python -m pip install modulo

The library can be imported in the usual way:

.. code-block:: python

    from modulo import modulo

Examples
^^^^^^^^
This library makes it possible to work with `congruence classes <https://en.wikipedia.org/wiki/Congruence_relation>`__ (and sets of congruence classes such as finite fields) as objects. A congruence class is defined using a representative integer and a modulus:

.. code-block:: python

    >>> from modulo import modulo
    >>> modulo(3, 7)
    modulo(3, 7)

Built-in operators can be used to perform modular addition, modular subtraction, and modular negation of congruence classes:

.. code-block:: python

    >>> modulo(3, 7) + modulo(5, 7)
    modulo(1, 7)
    >>> modulo(1, 7) - modulo(4, 7)
    modulo(4, 7)
    >>> -modulo(5, 7)
    modulo(2, 7)

Modular multiplication, division, inversion, and exponentiation are also supported (when they are defined):

.. code-block:: python

    >>> modulo(3, 7) * modulo(5, 7)
    modulo(1, 7)
    >>> modulo(1, 7) // modulo(3, 7)
    modulo(5, 7)
    >>> modulo(5, 7) ** 2
    modulo(4, 7)
    >>> modulo(5, 7) ** (-1)
    modulo(3, 7)

Individual congruence classes can be compared with one another according to their least nonnegative residues (and, thus, can also be sorted):

.. code-block:: python

    >>> mod(2, 7) < mod(3, 7)
    True
    >>> list(sorted([mod(2, 3), mod(1, 3), mod(0, 3)]))
    [modulo(0, 3), modulo(1, 3), modulo(2, 3)]

The membership operation is supported between integers and congruence classes:

.. code-block:: python

    >>> 3 in mod(3, 7)
    True
    >>> 10 in mod(3, 7)
    True
    >>> 4 in mod(3, 7)
    False

.. |len| replace:: ``len``
.. _len: https://docs.python.org/3/library/functions.html#len

A set of congruence classes such as a finite field can also be defined. The built-in length function |len|_ and the membership operator are supported:

.. code-block:: python

    >>> len(modulo(7))
    7
    >>> modulo(3, 7) in modulo(7)
    True

.. |int| replace:: ``int``
.. _int: https://docs.python.org/3/library/functions.html#int

The built-in |int|_ function can be used to retrieve the least nonnegative residue of a congruence class and the built-in |len|_ function can be used to retrieve the modulus of a congruence class or set of congruence classes (this is the recommended approach):

.. code-block:: python

    >>> c = modulo(3, 7)
    >>> int(c)
    3
    >>> len(c)
    7

Congruence classes and sets of congruence classes are also hashable (making it possible to use them as dictionary keys and as set members) and iterable:

.. code-block:: python

    >>> len({mod(0, 3), mod(1, 3), mod(2, 3)})
    3
    >>> list(mod(4))
    [modulo(0, 4), modulo(1, 4), modulo(2, 4), modulo(3, 4)]
    >>> from itertools import islice
    >>> list(islice(mod(3, 7), 5))
    [3, 10, 17, 24, 31]

The `Chinese remainder theorem <https://en.wikipedia.org/wiki/Chinese_remainder_theorem>`__ can be applied to construct the intersection of two congruence classes as a congruence class (when it is possible to do so):

.. code-block:: python

    >>> mod(23, 100) & mod(31, 49)
    modulo(423, 4900)
    >>> mod(2, 10) & mod(4, 20) is None
    True

Some familiar forms of notation for referring to congruence classes (and sets thereof) are also supported:

.. code-block:: python

    >>> Z/(23*Z)
    modulo(23)
    >>> 23*Z
    modulo(0, 23)
    >>> 17 + 23*Z
    modulo(17, 23)

Development
-----------
All installation and development dependencies are fully specified in ``pyproject.toml``. The ``project.optional-dependencies`` object is used to `specify optional requirements <https://peps.python.org/pep-0621>`__ for various development tasks. This makes it possible to specify additional options (such as ``docs``, ``lint``, and so on) when performing installation using `pip <https://pypi.org/project/pip>`__:

.. code-block:: bash

    python -m pip install .[docs,lint]

Documentation
^^^^^^^^^^^^^
The documentation can be generated automatically from the source files using `Sphinx <https://www.sphinx-doc.org>`__:

.. code-block:: bash

    python -m pip install .[docs]
    cd docs
    sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html

Testing and Conventions
^^^^^^^^^^^^^^^^^^^^^^^
All unit tests are executed and their coverage is measured when using `pytest <https://docs.pytest.org>`__ (see the ``pyproject.toml`` file for configuration details):

.. code-block:: bash

    python -m pip install .[test]
    python -m pytest

Alternatively, all unit tests are included in the module itself and can be executed using `doctest <https://docs.python.org/3/library/doctest.html>`__:

.. code-block:: bash

    python src/modulo/modulo.py -v

Style conventions are enforced using `Pylint <https://pylint.readthedocs.io>`__:

.. code-block:: bash

    python -m pip install .[lint]
    python -m pylint src/modulo

Contributions
^^^^^^^^^^^^^
In order to contribute to the source code, open an issue or submit a pull request on the `GitHub page <https://github.com/lapets/modulo>`__ for this library.

Versioning
^^^^^^^^^^
Beginning with version 0.2.0, the version number format for this library and the changes to the library associated with version number increments conform with `Semantic Versioning 2.0.0 <https://semver.org/#semantic-versioning-200>`__.

Publishing
^^^^^^^^^^
This library can be published as a `package on PyPI <https://pypi.org/project/modulo>`__ by a package maintainer. First, install the dependencies required for packaging and publishing:

.. code-block:: bash

    python -m pip install .[publish]

Ensure that the correct version number appears in ``pyproject.toml``, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an `automation rule <https://docs.readthedocs.io/en/stable/automation-rules.html>`__ that activates and sets as the default all tagged versions. Create and push a tag for this version (replacing ``?.?.?`` with the version number):

.. code-block:: bash

    git tag ?.?.?
    git push origin ?.?.?

Remove any old build/distribution files. Then, package the source into a distribution archive:

.. code-block:: bash

    rm -rf build dist src/*.egg-info
    python -m build --sdist --wheel .

Finally, upload the package distribution archive to `PyPI <https://pypi.org>`__:

.. code-block:: bash

    python -m twine upload dist/*

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "modulo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Andrei Lapets",
    "author_email": "a@lapets.io",
    "download_url": "https://files.pythonhosted.org/packages/8d/f1/6870979dda274664a26af843dbb3f3a6daa2ab171fb44b2dba5c9ae4089a/modulo-2.1.0.tar.gz",
    "platform": null,
    "description": "======\r\nmodulo\r\n======\r\n\r\nPure-Python library for working with modular arithmetic, congruence classes, and finite fields.\r\n\r\n|pypi| |readthedocs| |actions| |coveralls|\r\n\r\n.. |pypi| image:: https://badge.fury.io/py/modulo.svg\r\n   :target: https://badge.fury.io/py/modulo\r\n   :alt: PyPI version and link.\r\n\r\n.. |readthedocs| image:: https://readthedocs.org/projects/modulo-lib/badge/?version=latest\r\n   :target: https://modulo-lib.readthedocs.io/en/latest/?badge=latest\r\n   :alt: Read the Docs documentation status.\r\n\r\n.. |actions| image:: https://github.com/lapets/modulo/workflows/lint-test-cover-docs/badge.svg\r\n   :target: https://github.com/lapets/modulo/actions/workflows/lint-test-cover-docs.yml\r\n   :alt: GitHub Actions status.\r\n\r\n.. |coveralls| image:: https://coveralls.io/repos/github/lapets/modulo/badge.svg?branch=main\r\n   :target: https://coveralls.io/github/lapets/modulo?branch=main\r\n   :alt: Coveralls test coverage summary.\r\n\r\nPurpose\r\n-------\r\nThe library allows users to work with congruence classes (including finite field elements) as objects, with support for many common operations.\r\n\r\nInstallation and Usage\r\n----------------------\r\nThis library is available as a `package on PyPI <https://pypi.org/project/modulo>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install modulo\r\n\r\nThe library can be imported in the usual way:\r\n\r\n.. code-block:: python\r\n\r\n    from modulo import modulo\r\n\r\nExamples\r\n^^^^^^^^\r\nThis library makes it possible to work with `congruence classes <https://en.wikipedia.org/wiki/Congruence_relation>`__ (and sets of congruence classes such as finite fields) as objects. A congruence class is defined using a representative integer and a modulus:\r\n\r\n.. code-block:: python\r\n\r\n    >>> from modulo import modulo\r\n    >>> modulo(3, 7)\r\n    modulo(3, 7)\r\n\r\nBuilt-in operators can be used to perform modular addition, modular subtraction, and modular negation of congruence classes:\r\n\r\n.. code-block:: python\r\n\r\n    >>> modulo(3, 7) + modulo(5, 7)\r\n    modulo(1, 7)\r\n    >>> modulo(1, 7) - modulo(4, 7)\r\n    modulo(4, 7)\r\n    >>> -modulo(5, 7)\r\n    modulo(2, 7)\r\n\r\nModular multiplication, division, inversion, and exponentiation are also supported (when they are defined):\r\n\r\n.. code-block:: python\r\n\r\n    >>> modulo(3, 7) * modulo(5, 7)\r\n    modulo(1, 7)\r\n    >>> modulo(1, 7) // modulo(3, 7)\r\n    modulo(5, 7)\r\n    >>> modulo(5, 7) ** 2\r\n    modulo(4, 7)\r\n    >>> modulo(5, 7) ** (-1)\r\n    modulo(3, 7)\r\n\r\nIndividual congruence classes can be compared with one another according to their least nonnegative residues (and, thus, can also be sorted):\r\n\r\n.. code-block:: python\r\n\r\n    >>> mod(2, 7) < mod(3, 7)\r\n    True\r\n    >>> list(sorted([mod(2, 3), mod(1, 3), mod(0, 3)]))\r\n    [modulo(0, 3), modulo(1, 3), modulo(2, 3)]\r\n\r\nThe membership operation is supported between integers and congruence classes:\r\n\r\n.. code-block:: python\r\n\r\n    >>> 3 in mod(3, 7)\r\n    True\r\n    >>> 10 in mod(3, 7)\r\n    True\r\n    >>> 4 in mod(3, 7)\r\n    False\r\n\r\n.. |len| replace:: ``len``\r\n.. _len: https://docs.python.org/3/library/functions.html#len\r\n\r\nA set of congruence classes such as a finite field can also be defined. The built-in length function |len|_ and the membership operator are supported:\r\n\r\n.. code-block:: python\r\n\r\n    >>> len(modulo(7))\r\n    7\r\n    >>> modulo(3, 7) in modulo(7)\r\n    True\r\n\r\n.. |int| replace:: ``int``\r\n.. _int: https://docs.python.org/3/library/functions.html#int\r\n\r\nThe built-in |int|_ function can be used to retrieve the least nonnegative residue of a congruence class and the built-in |len|_ function can be used to retrieve the modulus of a congruence class or set of congruence classes (this is the recommended approach):\r\n\r\n.. code-block:: python\r\n\r\n    >>> c = modulo(3, 7)\r\n    >>> int(c)\r\n    3\r\n    >>> len(c)\r\n    7\r\n\r\nCongruence classes and sets of congruence classes are also hashable (making it possible to use them as dictionary keys and as set members) and iterable:\r\n\r\n.. code-block:: python\r\n\r\n    >>> len({mod(0, 3), mod(1, 3), mod(2, 3)})\r\n    3\r\n    >>> list(mod(4))\r\n    [modulo(0, 4), modulo(1, 4), modulo(2, 4), modulo(3, 4)]\r\n    >>> from itertools import islice\r\n    >>> list(islice(mod(3, 7), 5))\r\n    [3, 10, 17, 24, 31]\r\n\r\nThe `Chinese remainder theorem <https://en.wikipedia.org/wiki/Chinese_remainder_theorem>`__ can be applied to construct the intersection of two congruence classes as a congruence class (when it is possible to do so):\r\n\r\n.. code-block:: python\r\n\r\n    >>> mod(23, 100) & mod(31, 49)\r\n    modulo(423, 4900)\r\n    >>> mod(2, 10) & mod(4, 20) is None\r\n    True\r\n\r\nSome familiar forms of notation for referring to congruence classes (and sets thereof) are also supported:\r\n\r\n.. code-block:: python\r\n\r\n    >>> Z/(23*Z)\r\n    modulo(23)\r\n    >>> 23*Z\r\n    modulo(0, 23)\r\n    >>> 17 + 23*Z\r\n    modulo(17, 23)\r\n\r\nDevelopment\r\n-----------\r\nAll installation and development dependencies are fully specified in ``pyproject.toml``. The ``project.optional-dependencies`` object is used to `specify optional requirements <https://peps.python.org/pep-0621>`__ for various development tasks. This makes it possible to specify additional options (such as ``docs``, ``lint``, and so on) when performing installation using `pip <https://pypi.org/project/pip>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install .[docs,lint]\r\n\r\nDocumentation\r\n^^^^^^^^^^^^^\r\nThe documentation can be generated automatically from the source files using `Sphinx <https://www.sphinx-doc.org>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install .[docs]\r\n    cd docs\r\n    sphinx-apidoc -f -E --templatedir=_templates -o _source .. && make html\r\n\r\nTesting and Conventions\r\n^^^^^^^^^^^^^^^^^^^^^^^\r\nAll unit tests are executed and their coverage is measured when using `pytest <https://docs.pytest.org>`__ (see the ``pyproject.toml`` file for configuration details):\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install .[test]\r\n    python -m pytest\r\n\r\nAlternatively, all unit tests are included in the module itself and can be executed using `doctest <https://docs.python.org/3/library/doctest.html>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python src/modulo/modulo.py -v\r\n\r\nStyle conventions are enforced using `Pylint <https://pylint.readthedocs.io>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install .[lint]\r\n    python -m pylint src/modulo\r\n\r\nContributions\r\n^^^^^^^^^^^^^\r\nIn order to contribute to the source code, open an issue or submit a pull request on the `GitHub page <https://github.com/lapets/modulo>`__ for this library.\r\n\r\nVersioning\r\n^^^^^^^^^^\r\nBeginning with version 0.2.0, the version number format for this library and the changes to the library associated with version number increments conform with `Semantic Versioning 2.0.0 <https://semver.org/#semantic-versioning-200>`__.\r\n\r\nPublishing\r\n^^^^^^^^^^\r\nThis library can be published as a `package on PyPI <https://pypi.org/project/modulo>`__ by a package maintainer. First, install the dependencies required for packaging and publishing:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m pip install .[publish]\r\n\r\nEnsure that the correct version number appears in ``pyproject.toml``, and that any links in this README document to the Read the Docs documentation of this package (or its dependencies) have appropriate version numbers. Also ensure that the Read the Docs project for this library has an `automation rule <https://docs.readthedocs.io/en/stable/automation-rules.html>`__ that activates and sets as the default all tagged versions. Create and push a tag for this version (replacing ``?.?.?`` with the version number):\r\n\r\n.. code-block:: bash\r\n\r\n    git tag ?.?.?\r\n    git push origin ?.?.?\r\n\r\nRemove any old build/distribution files. Then, package the source into a distribution archive:\r\n\r\n.. code-block:: bash\r\n\r\n    rm -rf build dist src/*.egg-info\r\n    python -m build --sdist --wheel .\r\n\r\nFinally, upload the package distribution archive to `PyPI <https://pypi.org>`__:\r\n\r\n.. code-block:: bash\r\n\r\n    python -m twine upload dist/*\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Pure-Python library for working with modular arithmetic, congruence classes, and finite fields.",
    "version": "2.1.0",
    "project_urls": {
        "Documentation": "https://modulo-lib.readthedocs.io",
        "Repository": "https://github.com/lapets/modulo"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cebb556bd47c98675d4998abcfa245abc38e2b8bf120b74557558b6a23e2a63",
                "md5": "2ff96bf1364ed303e7597f7f96a88895",
                "sha256": "bdd5106ae5ef2a02385372d8eca8ec73a38a91118bb0ad100f419c40cfdb9abf"
            },
            "downloads": -1,
            "filename": "modulo-2.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2ff96bf1364ed303e7597f7f96a88895",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 11541,
            "upload_time": "2023-06-03T03:58:48",
            "upload_time_iso_8601": "2023-06-03T03:58:48.894488Z",
            "url": "https://files.pythonhosted.org/packages/3c/eb/b556bd47c98675d4998abcfa245abc38e2b8bf120b74557558b6a23e2a63/modulo-2.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8df16870979dda274664a26af843dbb3f3a6daa2ab171fb44b2dba5c9ae4089a",
                "md5": "647d718d9e9658efe27df2c3f2dc6aae",
                "sha256": "87f5100d176835052e16970af062ce68f90eefc408bb58955fcbbc99bffe5858"
            },
            "downloads": -1,
            "filename": "modulo-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "647d718d9e9658efe27df2c3f2dc6aae",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 13345,
            "upload_time": "2023-06-03T03:58:50",
            "upload_time_iso_8601": "2023-06-03T03:58:50.908140Z",
            "url": "https://files.pythonhosted.org/packages/8d/f1/6870979dda274664a26af843dbb3f3a6daa2ab171fb44b2dba5c9ae4089a/modulo-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-03 03:58:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lapets",
    "github_project": "modulo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "modulo"
}
        
Elapsed time: 0.31177s