Resolve "Operation Replacement in a SFG"
5 unresolved threads
5 unresolved threads
Compare changes
Files
2- Kevin authored
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
+ 25
− 17
@@ -406,7 +406,7 @@ class SFG(AbstractOperation):
@@ -406,7 +406,7 @@ class SFG(AbstractOperation):
"""Replace multiple operations in the sfg with a operation of equivalent functionallity with the same number of inputs and outputs.
@@ -414,28 +414,36 @@ class SFG(AbstractOperation):
@@ -414,28 +414,36 @@ class SFG(AbstractOperation):
assert sum(o.input_count + o.output_count for o in operations) == operation.input_count + operation.output_count, \
def _evaluate_source(self, src: OutputPort, results: MutableResultMap, registers: MutableRegisterMap, prefix: str) -> Number: