Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

bigraph-viz

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bigraph-viz - npm Package Compare versions

Comparing version
0.1.9
to
0.1.10
+1
-1
bigraph_viz.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: bigraph-viz
Version: 0.1.9
Version: 0.1.10
Summary: A graphviz-based plotting tool for compositional bigraph schema

@@ -5,0 +5,0 @@ Home-page: https://github.com/vivarium-collective/bigraph-viz

@@ -502,5 +502,17 @@ import os

def graphviz_map(core, schema, state, path, options, graph):
""""""
"""Visualize mappings by traversing key–value pairs."""
value_type = core._find_parameter(schema, 'value')
# Add node for the map container itself
if path:
node_spec = {
'name': path[-1],
'path': path,
'value': None,
'type': core.representation(schema)
}
graph['state_nodes'].append(node_spec)
# Add place edge to parent
if len(path) > 1:

@@ -507,0 +519,0 @@ graph['place_edges'].append({'parent': path[:-1], 'child': path})

Metadata-Version: 2.1
Name: bigraph-viz
Version: 0.1.9
Version: 0.1.10
Summary: A graphviz-based plotting tool for compositional bigraph schema

@@ -5,0 +5,0 @@ Home-page: https://github.com/vivarium-collective/bigraph-viz

@@ -7,3 +7,3 @@ [build-system]

name = "bigraph-viz"
version = "0.1.9"
version = "0.1.10"
description = "A visualization method for displaying the structure of process bigraphs"

@@ -10,0 +10,0 @@ readme = "README.md"

@@ -5,3 +5,3 @@ import re

VERSION = '0.1.9'
VERSION = '0.1.10'

@@ -8,0 +8,0 @@