Skip to content
Snippets Groups Projects
Commit d6025095 authored by Hugo Winbladh's avatar Hugo Winbladh Committed by Oscar Gustafsson
Browse files

fix linting problems

parent 5dfb76ea
No related branches found
No related tags found
1 merge request!420Add method to reconstruct SFG from a schedule
Pipeline #100172 skipped
This commit is part of merge request !420. Comments created here will be created in the context of that merge request.
...@@ -760,12 +760,14 @@ class Schedule: ...@@ -760,12 +760,14 @@ class Schedule:
delay_list = self._sfg.find_by_type_name(Delay.type_name()) delay_list = self._sfg.find_by_type_name(Delay.type_name())
def _reintroduce_delays(self) -> SFG: def _reintroduce_delays(self) -> SFG:
"""Reintroduce delay elements to each signal according to the ``_laps`` variable.""" """
reconstructed_sfg = self._sfg() Reintroduce delay elements to each signal according to the ``_laps`` variable.
"""
new_sfg = self._sfg()
for signal_id,lap in self._laps.items(): for signal_id,lap in self._laps.items():
for delays in range(lap): for delays in range(lap):
reconstructed_sfg = reconstructed_sfg.insert_operation_after(signal_id, Delay()) new_sfg = new_sfg.insert_operation_after(signal_id, Delay())
return reconstructed_sfg() return new_sfg()
def _schedule_alap(self) -> None: def _schedule_alap(self) -> None:
"""Schedule the operations using as-late-as-possible scheduling.""" """Schedule the operations using as-late-as-possible scheduling."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment