Skip to main content

Logical Graph Builder that can be used for various problems that can be modeled as a graph data structure

Project description

coopgraph

Logical Graph Builder that can be used for various problems that can be modeled as a graph data structure

An Example:

from Graphs import Graph, Node
from dataStructs import Vector2

a = Node(name='A', pos=Vector2(0, 0))
b = Node(name='B', pos=Vector2(3, 3))
c = Node(name='C', pos=Vector2(2, 0))
d = Node(name='D', pos=Vector2(2, 1))
e = Node(name='E', pos=Vector2(3, 4))
f = Node(name='F', pos=Vector2(5, 5))


g = { a: [d],
      b: [c],
      c: [b, d, e],
      d: [a, c],
      e: [c, f],
      f: []
    }

graph = Graph(g)

The graph structure can then be used to perform various graph-related analysis:

Two find nodes that have no outbound connections

print(graph.find_isolated_vertices())

To find the shortest path between two nodes

print(graph.astar(a, e))

Note that for astar calculation, edges can be enabled or disabled against one or more disablers. This is useful for implementing temporary criteria in:

edges_to_disable = [value for key, value in graph.edges()][:3]

graph.disable_edges(edges_to_disable, "myDisabler")
path = graph.astar(a, e)
graph.disable_edges(edges_to_disable, "myDisabler")

you can also ignore disablers directly by passing a list of disabler names to the astar() method

edges_to_disable = [value for key, value in graph.edges()][:3]
graph.disable_edges(edges_to_disable, "myIngoredDisabler")

ignored = ["myIngoredDisabler"]
path = graph.astar(a, e, ignored_disablers=ignored)

An astar() call can also include custom g and h functions that allow for better control of the astar algorithm

def g(node1 Node, node2: Node) -> float:
    if node1.pos - node2.pos > 10:
        return 1
    else
        return .5

def h(node1 Node, node2: Node) -> float:
    if node1.pos - node2.pos > 10:
        return 100
    else
        return -100

path = graph.astar(a, e, g_func=g, h_func=h)

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

coopgraph-1.13.tar.gz (17.4 kB view details)

Uploaded Source

Built Distribution

coopgraph-1.13-py3-none-any.whl (15.7 kB view details)

Uploaded Python 3

File details

Details for the file coopgraph-1.13.tar.gz.

File metadata

  • Download URL: coopgraph-1.13.tar.gz
  • Upload date:
  • Size: 17.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for coopgraph-1.13.tar.gz
Algorithm Hash digest
SHA256 52d5890207b928f1dbc69abc81546defb897bba319b65824d81af0bd272ed392
MD5 5e9139958c18de6301043d79d9047277
BLAKE2b-256 ba5243d1cb1f8908b83de7e30710129a34c08d8002f24a83be73901a3ea7e055

See more details on using hashes here.

File details

Details for the file coopgraph-1.13-py3-none-any.whl.

File metadata

  • Download URL: coopgraph-1.13-py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for coopgraph-1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 6709811553a646a549c8d6ff6edb347310222eede952d09fa164c6a348c1982d
MD5 b540443eb5e02a45f76475311948351b
BLAKE2b-256 0f9f9ff9d64e6e3b7882b7c013a6f92a3347f9129b0113bb81e67edd3e34791e

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