diff options
| author | hallgren <hallgren@chalmers.se> | 2016-06-09 13:12:14 +0000 |
|---|---|---|
| committer | hallgren <hallgren@chalmers.se> | 2016-06-09 13:12:14 +0000 |
| commit | 096b4cfceea03007ae1ac7d46080c2a5f8e99688 (patch) | |
| tree | 58ce3c746cc1782d6a69022781586cf9103c647d /src/runtime/haskell/PGF.hs | |
| parent | 617624e2a81ec00dd5484a7e0ee7ca8f21a3ffff (diff) | |
PGF service & minibar: only show dependency diagrams if the labels are known
+ The PGF service now reads and caches dependency label configuration files.
+ The grammar info returned by command=grammar has a new boolean field
'hasDependencyLabels' to indicate if dependency labels were found for
the grammar. Also, command=deptree will now fail if no labels are present.
+ The minibar only shows word dependency trees if labels are present.
+ Also changed the type of getDepLabels from [String] -> Labels to
String -> Labels, since all uses were in the form "getDepLabels . lines".
Diffstat (limited to 'src/runtime/haskell/PGF.hs')
| -rw-r--r-- | src/runtime/haskell/PGF.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/PGF.hs b/src/runtime/haskell/PGF.hs index bda3919be..293aec0fd 100644 --- a/src/runtime/haskell/PGF.hs +++ b/src/runtime/haskell/PGF.hs @@ -131,7 +131,7 @@ module PGF( graphvizDefaults, conlls2latexDoc, -- extra: - getDepLabels, + Labels, getDepLabels, -- * Probabilities Probabilities, |
