diff options
-rw-r--r-- | steuermann/nodes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/steuermann/nodes.py b/steuermann/nodes.py index cfab1c0..e364f57 100644 --- a/steuermann/nodes.py +++ b/steuermann/nodes.py @@ -268,7 +268,7 @@ def c_d_fn(x,depth) : print "error: loop detected at",x.name return - print '>'," "*depth, depth, x.name + # print '>'," "*depth, depth, x.name # if it is already deeper than where we are now, we can (must) # prune the tree walk here. @@ -290,7 +290,7 @@ def c_d_fn(x,depth) : for y in x.successors : c_d_fn(y,depth) - print '<'," "*depth, depth, x.name + # print '<'," "*depth, depth, x.name x.in_recursion = 0 def compute_depths(nodes) : |