better p format
This commit is contained in:
parent
f600a028c0
commit
f924e4be28
37
src/tre/tre
37
src/tre/tre
@ -232,17 +232,40 @@ def printtree_dgp(root,arcs,o)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# old:
|
||||||
|
# def printpar(root,arcs)
|
||||||
|
# print nodeinfo(root)
|
||||||
|
# deps = arcs.select{ |a| a[0]==root }.sort{|a,b| a[1]<=>b[1] }
|
||||||
|
# unless deps == []
|
||||||
|
# print '('
|
||||||
|
# cont=false
|
||||||
|
# for arc in deps
|
||||||
|
# if cont then print ',' else cont=true end
|
||||||
|
# print arc[2],':' if $INFO =~ /l/
|
||||||
|
# printpar(arc[1],arcs)
|
||||||
|
# end
|
||||||
|
# print ')'
|
||||||
|
# end
|
||||||
|
# end
|
||||||
|
|
||||||
def printpar(root,arcs)
|
def printpar(root,arcs)
|
||||||
print nodeinfo(root)
|
|
||||||
deps = arcs.select{ |a| a[0]==root }.sort{|a,b| a[1]<=>b[1] }
|
ldeps = arcs.select{|a| a[0]==root and $gphid[a[1]] < $gphid[root]}.sort{|a,b| $gphid[a[1]]<=>$gphid[b[1]] }
|
||||||
unless deps == []
|
rdeps = arcs.select{|a| a[0]==root and $gphid[a[1]] > $gphid[root]}.sort{|a,b| $gphid[a[1]]<=>$gphid[b[1]] }
|
||||||
|
|
||||||
|
for arc in ldeps
|
||||||
print ' ('
|
print ' ('
|
||||||
cont=false
|
print arc[2].upcase if $INFO =~ /l/
|
||||||
for arc in deps
|
|
||||||
if cont then print ',' else cont=true end
|
|
||||||
print arc[2],':' if $INFO =~ /l/
|
|
||||||
printpar(arc[1],arcs)
|
printpar(arc[1],arcs)
|
||||||
|
print ')'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
print ' ',nodeinfo(root)
|
||||||
|
|
||||||
|
for arc in rdeps
|
||||||
|
print ' ('
|
||||||
|
print arc[2].upcase if $INFO =~ /l/
|
||||||
|
printpar(arc[1],arcs)
|
||||||
print ')'
|
print ')'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user