aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-02-11 02:04:04 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2019-02-15 20:03:45 +0100
commit77b230a61638c877c646517fa870c3f490b8505f (patch)
treeddf1e5ed62006bdd60f9e894f3ea6c5f64b9a9a7
parentRewrote content_line, and how parameters are stored. (diff)
downloadcalp-77b230a61638c877c646517fa870c3f490b8505f.tar.gz
calp-77b230a61638c877c646517fa870c3f490b8505f.tar.xz
Add toggle for node data output.
-rw-r--r--graphs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/graphs.c b/graphs.c
index 3550ddf5..ab10286b 100644
--- a/graphs.c
+++ b/graphs.c
@@ -104,6 +104,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
TRIE_NODE(T)* child = root->child;
// ----------------------------------------
+#if 0 /* Toggle values */
if (root->value != NULL) {
FOR(LLIST(content_set), link, &L(root)->val) {
@@ -129,6 +130,7 @@ int trie_to_dot_helper ( TRIE_NODE(T)* root, FILE* f ) {
}
}
}
+#endif
// ----------------------------------------