Skip to content
Snippets Groups Projects

Process

Merged Mikael Henriksson requested to merge process into master
1 unresolved thread

Add ProcessCollection functionality (w/o schedule time).

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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]()
  • added 6 commits

    Compare with previous version

  • Oscar Gustafsson approved this merge request

    approved this merge request

  • Please register or sign in to reply
    Loading