Skip to content
Snippets Groups Projects

Add critical path computation

Merged Frans Skarman requested to merge critical_path into master
2 files
+ 15
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -1451,3 +1451,9 @@ class SFG(AbstractOperation):
if format is not None:
dg.format = format
dg.view()
def critical_path(self):
# Import here needed to avoid circular imports
from b_asic.schedule import Schedule
return Schedule(self, scheduling_algorithm="ASAP").schedule_time
Loading