process-bigraph 0.0.30__tar.gz → 0.0.31__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {process-bigraph-0.0.30/process_bigraph.egg-info → process-bigraph-0.0.31}/PKG-INFO +1 -1
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/composite.py +6 -2
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/process_types.py +2 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31/process_bigraph.egg-info}/PKG-INFO +1 -1
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/setup.py +1 -1
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/.github/workflows/notebook_to_html.yml +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/.github/workflows/pytest.yml +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/.gitignore +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/AUTHORS.md +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/CLA.md +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/CODE_OF_CONDUCT.md +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/CONTRIBUTING.md +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/LICENSE +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/README.md +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/doc/_static/process-bigraph.png +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/notebooks/process-bigraphs.ipynb +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/notebooks/visualize_processes.ipynb +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/__init__.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/emitter.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/experiments/__init__.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/experiments/minimal_gillespie.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/processes/__init__.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/processes/growth_division.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/processes/parameter_scan.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/protocols.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/tests.py +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph.egg-info/SOURCES.txt +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph.egg-info/dependency_links.txt +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph.egg-info/requires.txt +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph.egg-info/top_level.txt +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/pytest.ini +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/release.sh +0 -0
- {process-bigraph-0.0.30 → process-bigraph-0.0.31}/setup.cfg +0 -0
|
@@ -450,10 +450,14 @@ class Composite(Process):
|
|
|
450
450
|
raise Exception(
|
|
451
451
|
f'initial state from edge does not match initial state from other edges:\n{path}\n{edge}\n{edge_state}')
|
|
452
452
|
|
|
453
|
-
self.
|
|
454
|
-
self.
|
|
453
|
+
self.merge(
|
|
454
|
+
self.composition,
|
|
455
455
|
edge_state)
|
|
456
456
|
|
|
457
|
+
# self.state = deep_merge(
|
|
458
|
+
# self.state,
|
|
459
|
+
# edge_state)
|
|
460
|
+
|
|
457
461
|
# TODO: call validate on this composite, not just check
|
|
458
462
|
# assert self.core.validate(
|
|
459
463
|
# self.composition,
|
|
@@ -153,6 +153,8 @@ def deserialize_process(schema, encoded, core):
|
|
|
153
153
|
core=core)
|
|
154
154
|
|
|
155
155
|
deserialized['instance'] = process
|
|
156
|
+
else:
|
|
157
|
+
process = deserialized['instance']
|
|
156
158
|
|
|
157
159
|
# TODO: this mutating the original value directly into
|
|
158
160
|
# the return value is weird (?)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/experiments/minimal_gillespie.py
RENAMED
|
File without changes
|
|
File without changes
|
{process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/processes/growth_division.py
RENAMED
|
File without changes
|
{process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph/processes/parameter_scan.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process-bigraph-0.0.30 → process-bigraph-0.0.31}/process_bigraph.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|