Implement Tmin
3 unresolved threads
3 unresolved threads
Compare changes
Conflict: This file was modified in both the source and target branches.
Ask someone with write access to resolve it.
+ 89
− 1
@@ -1688,13 +1688,101 @@ class SFG(AbstractOperation):
? (or maybe this should exactly match t, right?)
One may consider using a regular expression, but not sure if that is actually better performancewise.
'^t[0-9]+'
is probably the correct expression to check.
One may consider if this should be a "private" method (starting with _) and if it possibly should not be a class method, but a function. One can, e.g., define functions inside methods.
Or do one expect that this will be used for something else? I can imagine that it can be of interest to actually return the loops, but not sure I understand exactly what this does.