Skip to main content

Methods for building and simulating constraint hypergraphs.

Project description

Static Badge Read the Docs Static Badge GitHub Release GitHub last commit

ConstraintHg

This repository enables usage of hypergraphs to define and execute system models. It is not a rigorous data storage solution. Do not use this as a database. Note that this repo is under active development (no official release yet), therefore changes may occur rapidly. Fork the repository before using it.

Install

ConstraintHg is listed on the Python Package Index. Just use pip install constrainthg to get started.

Introduction

Hypergraphs are normal graphs but without the constraint that edges must only link between two nodes. Because of this expanded generality, hypergraphs can be used to model more complex relationships. For instance, the relationship A + B = C is a multinodal relationship between three nodes, A, B, and C. You can think of all three nodes being linked by a 2D hyperedge, so that to move along that hyperedge you need at least two of three nodes.

An constraint hypergraph is a hypergraph where the relationships are constraints that can be solved for by some execution engine, generally via API calls. These constraints reveal the behavior of the system. The goal is for the hypergraph to be platform agnostic, while API calls allow for edges to be processed on any available software.

Processing a series of nodes and edges (a "route") is what constitutes a simulation, so one of the uses of an constraint hypergraph is enabling high-level simulation ability from any possible entry point in a system model.

Getting started

Note that this demo is found in demos/demo_basic.py Let's build a basic constraint hypergraph of the following equations:

  • $A + B = C$
  • $A = -D$
  • $B = -E$
  • $D + E = F$
  • $F = -C$

First, import the classes.

from constrainthg.hypergraph import Hypergraph
import constrainthg.relations as R

A hypergraph consists of edges that map between a set of nodes to a single node. We provide the mapping by defining a constraint function (many of which are already defined in the relationships module). The two relationships defined in the governing equations are addition and negation. Using the typical syntax, we refer to the functions defined in relationships with R.<name>, in this case R.Rsum and R.Rnegate. To make the hypergraph we'll need to compose the 5 edges (equations) given above.

hg = Hypergraph()
hg.add_edge(['A', 'B'], 'C', R.Rsum)
hg.add_edge('A', 'D', R.Rnegate)
hg.add_edge('B', 'E', R.Rnegate)
hg.add_edge(['D', 'E'], 'F', R.Rsum)
hg.add_edge('F', 'C', R.Rnegate)

We can verify that the hypergraph was made correctly by tracing all possible paths for generating C using the printPaths function.

print(hg.print_paths('C'))

This should give us the following output. Hyperedges are indicated with a , with the last source separated from other edges with a .

└──C, cost=1
   ├◯─A, cost=0
   ├●─B, cost=0
   └──F, cost=3
      ├◯─D, cost=1
      │  └──A, cost=0
      └●─E, cost=1
         └──B, cost=0

Compute the value of $C$ by picking a set of source nodes (inputs), such as $A$ and $B$ or $A$ and $E$. Set values for the inputs and the solver will automatically calulate an optimized route to simulate $C$.

print("**Inputs A and E**")
hg.solve('C', {'A':3, 'E':-7}, to_print=True)
print("**Inputs A and B**")
hg.solve('C', {'A':3, 'B':7}, to_print=True)

The output of the above should be:

**Inputs A and E**
└──C= 10, cost=3
   └──F= -10, cost=2
      ├──D= -3, cost=1
      │  └──A= 3, cost=0
      └──E= -7, cost=0

**Inputs A and B**
└──C= 10, cost=1
   ├──A= 3, cost=0
   └──B= 7, cost=0

Check out the demos directory for more examples.

Licensing and Usage

Author: John Morris
Organization: PLM Center at Clemson University
Contact: Reach out to my GitHub profile (jmorris335)
Usage: An official release will likely be provided under the CC BY-NC-SA 4.0 license, but for now all rights are reserved. For usage, please reach out to the author directly.

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

constrainthg-0.1.1.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

constrainthg-0.1.1-py3-none-any.whl (16.7 kB view details)

Uploaded Python 3

File details

Details for the file constrainthg-0.1.1.tar.gz.

File metadata

  • Download URL: constrainthg-0.1.1.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for constrainthg-0.1.1.tar.gz
Algorithm Hash digest
SHA256 d1c9458cd0e80eb57b39d0b0cfd40c292581a328bb37f154269d0e4d76464198
MD5 3f0a60e3e6882126adebf1359d0206af
BLAKE2b-256 d978ae7a540b4c8dcf1188935c68268b786062dc5f9a8d16f68ce3771dab4fb4

See more details on using hashes here.

File details

Details for the file constrainthg-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for constrainthg-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9a275b8a143bbbe8dd8311df5c9c866ccfecd2273703dda318204bd8680f2314
MD5 700ce0d9b6f3535bf276520bd88c830c
BLAKE2b-256 192a900168fc0fb02d118179c131c16a70f64992e3427dcdc6f6a20dfccc5c4a

See more details on using hashes here.

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