summaryrefslogtreecommitdiff
path: root/decoder
diff options
context:
space:
mode:
Diffstat (limited to 'decoder')
-rw-r--r--decoder/viterbi.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/viterbi.cc b/decoder/viterbi.cc
index c8322823..fac9dd70 100644
--- a/decoder/viterbi.cc
+++ b/decoder/viterbi.cc
@@ -5,7 +5,7 @@
#include <vector>
#include "hg.h"
-#define DEBUG_VITERBI_SORT
+//#define DEBUG_VITERBI_SORT
using namespace std;
@@ -29,7 +29,7 @@ std::string viterbi_stats(Hypergraph const& hg, std::string const& name, bool es
}
#ifdef DEBUG_VITERBI_SORT
const_cast<Hypergraph&>(hg).ViterbiSortInEdges();
- o<<name<<" sorted #1 derivation: ";
+ o<<name<<"sorted #1 derivation: ";
o<<hg.show_first_tree(false);
o<<endl;
#endif