diff --git a/b_asic/signal_flow_graph.py b/b_asic/signal_flow_graph.py index 7139806dc9d39a29846d4bb751972a210271c192..c2e3b43eba25056a2ad855e9d99f9a8d7dad4ee6 100644 --- a/b_asic/signal_flow_graph.py +++ b/b_asic/signal_flow_graph.py @@ -737,11 +737,12 @@ class SFG(AbstractOperation): return sfg_copy() def simplify_delay_element_placement(self) -> "SFG": - """ Simplify an SFG by removing some redundant delay elements. - For example two signals originating from the same starting point, each - connected to a delay element will combine into a single delay element. + """ + Simplify an SFG by removing some redundant delay elements. + For example two signals originating from the same starting point, each + connected to a delay element will combine into a single delay element. - Returns a copy of the simplified SFG. + Returns a copy of the simplified SFG. """ sfg_copy = self()