A collection of algorithms for cycles in a graph.
Project description
cycless
A collection of algorithms to analyze a graph as a set of cycles.
Some codes come from https://github.com/vitroid/Polyhed and https://github.com/vitroid/countrings are integrated and improved.
Version 0.5
API
API manual is here.
cycles.py
A simple algorithm to enumerate all irreducible cycles of n-members and smaller in an undirected graph. [Matsumoto 2007]
import cycless.cycles as cy
import networkx as nx
g = nx.cubical_graph()
for cycle in cy.cycles_iter(g, maxsize=6):
print(cycle)
dicycles.py
An algorithm to enumerate the directed cycles of a size in a dircted graph. [Matsumoto 2021]
from genice2.genice import GenIce
from genice2.plugin import Lattice, Format, Molecule
import cycless.dicycles as dc
# Generate an ice I structure as a directed graph
lattice = Lattice("1h")
formatter = Format("raw", stage=(3,))
raw = GenIce(lattice, signature="ice 1h", rep=[2, 2, 2]).generate_ice(formatter)
for cycle in dc.dicycles_iter(raw["digraph"], size=6):
print(cycle)
polyhed.py
An algorithm to enumerate the quasi-polyhedral hull made of cycles in an undirected graph. A quasi-polyhedral hull (vitrite) obeys the following conditions: [Matsumoto 2007]
- The surface of the hull is made of irreducible cycles.
- Two or three cycles shares a vertex of the hull.
- Two cycles shares an edge of the hull.
- Its Euler index (F-E+V) is two.
import cycless.cycles as cy
import cycless.polyhed as ph
import networkx as nx
g = nx.dodecahedral_graph()
cycles = [cycle for cycle in cy.cycles_iter(g, maxsize=6)]
for polyhed in ph.polyhedra_iter(cycles):
print(polyhed)
simplex.py
Enumerate triangle, tetrahedral, and octahedral subgraphs found in the given graph.
References
- M. Matsumoto, A. Baba, and I. Ohmine, Topological building blocks of hydrogen bond network in water, J. Chem. Phys. 127, 134504 (2007). http://doi.org/10.1063/1.2772627
- Matsumoto, M., Yagasaki, T. & Tanaka, H. On the anomalous homogeneity of hydrogen-disordered ice and its origin. J. Chem. Phys. 155, 164502 (2021). https://doi.org/10.1063/5.0065215
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cycless-0.6.3.tar.gz.
File metadata
- Download URL: cycless-0.6.3.tar.gz
- Upload date:
- Size: 13.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.4 Darwin/24.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbf6fd7b9f8be657ece05192601373bf1ee8da0b3bd7f96059024100bc7c7417
|
|
| MD5 |
df8190c25f7c8277405027c76b44fe1f
|
|
| BLAKE2b-256 |
83df62244241be57053e9e27db3e4ecf41e155591cda8f6f6eb8c9e708803151
|
File details
Details for the file cycless-0.6.3-py3-none-any.whl.
File metadata
- Download URL: cycless-0.6.3-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.4 Darwin/24.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac23a7c2e5c68f0c01202978bae886380561a2867efb7abdd5ad5d6a76faf0f6
|
|
| MD5 |
e35ebf82e19ee4fab99a6e0e6a8e9089
|
|
| BLAKE2b-256 |
c6e1520fa8239479794a170106b256faf6084a980479ac4beb148e6fb66c1a0c
|