process-bigraph 0.0.31__tar.gz → 0.0.32__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.31/process_bigraph.egg-info → process-bigraph-0.0.32}/PKG-INFO +1 -1
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/process_types.py +4 -8
- {process-bigraph-0.0.31 → process-bigraph-0.0.32/process_bigraph.egg-info}/PKG-INFO +1 -1
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/setup.py +1 -1
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/.github/workflows/notebook_to_html.yml +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/.github/workflows/pytest.yml +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/.gitignore +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/AUTHORS.md +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/CLA.md +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/CODE_OF_CONDUCT.md +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/CONTRIBUTING.md +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/LICENSE +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/README.md +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/doc/_static/process-bigraph.png +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/notebooks/process-bigraphs.ipynb +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/notebooks/visualize_processes.ipynb +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/__init__.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/composite.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/emitter.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/experiments/__init__.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/experiments/minimal_gillespie.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/processes/__init__.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/processes/growth_division.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/processes/parameter_scan.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/protocols.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/tests.py +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph.egg-info/SOURCES.txt +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph.egg-info/dependency_links.txt +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph.egg-info/requires.txt +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph.egg-info/top_level.txt +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/pytest.ini +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/release.sh +0 -0
- {process-bigraph-0.0.31 → process-bigraph-0.0.32}/setup.cfg +0 -0
|
@@ -112,10 +112,8 @@ def deserialize_process(schema, encoded, core):
|
|
|
112
112
|
encoded = encoded or {}
|
|
113
113
|
schema = schema or {}
|
|
114
114
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
else:
|
|
118
|
-
deserialized = encoded
|
|
115
|
+
default = core.default(schema)
|
|
116
|
+
deserialized = deep_merge(default, encoded)
|
|
119
117
|
|
|
120
118
|
if not deserialized.get('address'):
|
|
121
119
|
return deserialized
|
|
@@ -183,10 +181,8 @@ def deserialize_process(schema, encoded, core):
|
|
|
183
181
|
|
|
184
182
|
|
|
185
183
|
def deserialize_step(schema, encoded, core):
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
else:
|
|
189
|
-
deserialized = copy.deepcopy(encoded)
|
|
184
|
+
default = core.default(schema)
|
|
185
|
+
deserialized = deep_merge(default, encoded)
|
|
190
186
|
|
|
191
187
|
if not deserialized['address']:
|
|
192
188
|
return deserialized
|
|
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
|
|
File without changes
|
{process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/experiments/minimal_gillespie.py
RENAMED
|
File without changes
|
|
File without changes
|
{process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/processes/growth_division.py
RENAMED
|
File without changes
|
{process-bigraph-0.0.31 → process-bigraph-0.0.32}/process_bigraph/processes/parameter_scan.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{process-bigraph-0.0.31 → process-bigraph-0.0.32}/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
|