summaryrefslogtreecommitdiff
path: root/src/PGF/VisualizeTree.hs
diff options
context:
space:
mode:
authoraarne <aarne@chalmers.se>2009-10-20 19:27:42 +0000
committeraarne <aarne@chalmers.se>2009-10-20 19:27:42 +0000
commit70b5e2a93037603f9f5b20c46e9ad15a95a7c097 (patch)
treead80e6ae56e279e0edf3d8653f19bddfc10ab880 /src/PGF/VisualizeTree.hs
parentcf6011d9a6e3902844ee896818e5cbbf34c5f9f6 (diff)
fix for multiword phrases in Malt format
Diffstat (limited to 'src/PGF/VisualizeTree.hs')
-rw-r--r--src/PGF/VisualizeTree.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PGF/VisualizeTree.hs b/src/PGF/VisualizeTree.hs
index 809472da5..4919f00f7 100644
--- a/src/PGF/VisualizeTree.hs
+++ b/src/PGF/VisualizeTree.hs
@@ -139,13 +139,13 @@ dependencyTree format debug mlab ms pgf lang exp = case format of
Just (q,l) -> (maybe 0 id (Map.lookup q nodeMap), if null l then rootlabel else l)
_ -> (0,rootlabel)
- wnodes = [[show i, unwords ws, showCId fun, pos, pos, morph, show dom, lab, unspec, unspec] |
+ wnodes = [[show i, maltws ws, showCId fun, pos, pos, morph, show dom, lab, unspec, unspec] |
(i, ((fun,p),ws)) <- tail nodeWords,
let pos = showCId $ lookValCat pgf fun,
let morph = unspec,
let (dom,lab) = lookDomLab p
]
-
+ maltws = concat . intersperse "+" . words . unwords -- no spaces in column 2
unspec = "_"
rootlabel = "ROOT"