Process
1 unresolved thread
1 unresolved thread
Add ProcessCollection functionality (w/o schedule time).
Merge request reports
Activity
- b_asic/resources.py 0 → 100644
72 pos=nx.spring_layout(exclusion_graph, seed=1), 73 ) 74 75 76 class ProcessCollection: 77 """ 78 Collection of one or more processes 79 80 Parameters 81 ---------- 82 collection : set of :class:`~b_asic.process.Process` objects, optional 83 """ 84 85 def __init__(self, collection: Optional[Set[Process]] = None): 86 if collection is None: 87 self._collection = set[Process]() changed this line in version 2 of the diff
added 6 commits
-
e0cf2703...eeee0314 - 3 commits from branch
master
- 0a5920d5 - Add NetorkX to dependency list
- 2a20d18b - Add ProcessCollection class
- 1d284ff3 - Add proper testing to ProcessCollection
Toggle commit list-
e0cf2703...eeee0314 - 3 commits from branch
Please register or sign in to reply