process-bigraph 0.0.18__tar.gz → 0.0.20__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.
Files changed (21) hide show
  1. {process-bigraph-0.0.18/process_bigraph.egg-info → process-bigraph-0.0.20}/PKG-INFO +1 -1
  2. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/__init__.py +1 -10
  3. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/composite.py +218 -268
  4. process-bigraph-0.0.20/process_bigraph/experiments/comets.py +511 -0
  5. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/experiments/growth_division.py +1 -0
  6. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/experiments/parameter_scan.py +1 -1
  7. process-bigraph-0.0.20/process_bigraph/process_types.py +212 -0
  8. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/protocols.py +0 -2
  9. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/tests.py +63 -3
  10. {process-bigraph-0.0.18 → process-bigraph-0.0.20/process_bigraph.egg-info}/PKG-INFO +1 -1
  11. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph.egg-info/SOURCES.txt +2 -0
  12. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/setup.py +5 -2
  13. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/AUTHORS.md +0 -0
  14. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/LICENSE +0 -0
  15. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/README.md +0 -0
  16. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/experiments/__init__.py +0 -0
  17. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph/experiments/minimal_gillespie.py +0 -0
  18. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph.egg-info/dependency_links.txt +0 -0
  19. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph.egg-info/requires.txt +0 -0
  20. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/process_bigraph.egg-info/top_level.txt +0 -0
  21. {process-bigraph-0.0.18 → process-bigraph-0.0.20}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: process-bigraph
3
- Version: 0.0.18
3
+ Version: 0.0.20
4
4
  Summary: UNKNOWN
5
5
  Home-page: https://github.com/vivarium-collective/process-bigraph
6
6
  Author: Ryan Spangler, Eran Agmon
@@ -1,17 +1,8 @@
1
1
  import pprint
2
- from bigraph_schema.registry import deep_merge
2
+ from bigraph_schema.registry import deep_merge, default
3
3
  from process_bigraph.composite import Process, Step, Composite, ProcessTypes, interval_time_precision
4
4
 
5
5
 
6
- __all__ = [
7
- 'Process',
8
- 'Step',
9
- 'Composite',
10
- 'pp',
11
- 'pf',
12
- ]
13
-
14
-
15
6
  pretty = pprint.PrettyPrinter(indent=2)
16
7
 
17
8