Skip to content
Snippets Groups Projects

Better schedule, including plotting

Merged Oscar Gustafsson requested to merge plotschedule into master
3 files
+ 12
8
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
1
@@ -22,7 +22,7 @@ class Constant(AbstractOperation):
@@ -22,7 +22,7 @@ class Constant(AbstractOperation):
def __init__(self, value: Number = 0, name: Name = ""):
def __init__(self, value: Number = 0, name: Name = ""):
"""Construct a Constant operation with the given value."""
"""Construct a Constant operation with the given value."""
super().__init__(input_count=0, output_count=1, name=name)
super().__init__(input_count=0, output_count=1, name=name, latency_offsets={'out0' : 0})
self.set_param("value", value)
self.set_param("value", value)
@classmethod
@classmethod
Loading