Skip to main content

a library for working with zero divisor graphs of commutative semigroups

Project description

Zero Divisor Graph math library

This is a pure python library for working with zero divisor graphs of commutative semigroups. The primary purpose is to automate the task of checking if a given graph is a zero divisor graph and for what possible semigroups.

Installation

pip3 install zero-divisor-graph

You can also retrieve from source at https://github.com/Paulcappaert/zero-divisor-graph

use

first start python3 in a terminal window and import the ZeroDivisorGraph object

python3
>>> from zdg.zdg import ZeroDivisorGraph as ZDG

You can create a zero divisor graph from edges as such. the vertices can be named whatever you want.

>>> example1 = ZDG((1, 2), (2, 3))
>>> example2 = ZDG(('a', 'b'), ('b', 'c'))

You can print all of the semigroups from a zero divisor graph as such

>>> semigroups = example1.semigroups()
>>> for s in semigroups:
...   print(s.caley_table())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zero-divisor-graph-1.0.0.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

zero_divisor_graph-1.0.0-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page