Skip to main content

Python Class for Tree Decomposition

Project description

TreeDecomp

TreeDecomp is a simple python package for storing and manipulating tree decompositions. It was originally written as part of infrared, a generic C++/Python hybrid library for efficient (fixed-parameter tractable) Boltzmann sampling. By default, TreeDecomp runs treewidth_min_fill_in from networkx $20$ times on randomized input and returns the one with the smallest treewidth as treedecomp.TreeDecomposition.

Simple Usage

The class TreeDecompositionFactory creates a tree decomposition for a given hypergraph. The result is stored in TreeDecomposition. A hypergraph is a pair of integer and a list of lists, where the former one is the number of nodes and the later one is the list of hyperedges.

>>> import treedecomp as td
>>> nb_nodes = 6
>>> hyperedges = [[0,1,5], [2,4], [2,5], [3,4,5]]
>>> tree = treedecomp.TreeDecompositionFactory().create(nb_nodes, hyperedges)
>>> tree.get_bags()
[[4, 5, 3], [4, 5, 2], [5, 1], [5, 0, 1]]
>>> tree.get_edges()
[(0, 1), (0, 2), (2, 3)]
>>> tree.toposorted_bag_indices()
[0, 2, 3, 1]
>>> with open('tree.dot', 'w') as output:
...     td.writeTD(output)

Future Work

One can notice TreeDecomp offers two other tree decompoistion factories HTDTreeDecompositionFactory and TDLibTreeDecompositionFactory. These two are for supporting tree decompoitions using libhtd (via python wrapper) or calling TDlib (written in java) that will be included in the future

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

treedecomp-1.2.0.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

treedecomp-1.2.0-py3-none-any.whl (21.1 kB view details)

Uploaded Python 3

File details

Details for the file treedecomp-1.2.0.tar.gz.

File metadata

  • Download URL: treedecomp-1.2.0.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for treedecomp-1.2.0.tar.gz
Algorithm Hash digest
SHA256 a64c5cf5005ab2f4950eeef806e337049ac56f5908917e0849de884833669234
MD5 aa703aa4bca505b75f1b59b097be2bdb
BLAKE2b-256 bd1a819e503679bbfeb3090e3494c24d8be51b254b79c68fddd5b1a1f63841e6

See more details on using hashes here.

File details

Details for the file treedecomp-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: treedecomp-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 21.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for treedecomp-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8c560a8f1f1e44298b2336dc68aa902dce82152c1369d1e1bb73e0c8eba76401
MD5 a6202db9c0dfac0806805ba7431481ca
BLAKE2b-256 9c4a36566492bef33dfcef83cf94fd8d486521b41f66f0ead2654799963d4126

See more details on using hashes here.

Supported by

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