You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/08/23 22:17:25 UTC

[08/50] [abbrv] incubator-joshua git commit: removed debugging output

removed debugging output


Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/d6820c6f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/d6820c6f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/d6820c6f

Branch: refs/heads/7
Commit: d6820c6f3bc41ca87dfff4a8ed18172de4f849e6
Parents: 0e49bc5
Author: Matt Post <po...@cs.jhu.edu>
Authored: Sun Aug 21 07:01:17 2016 -0500
Committer: Matt Post <po...@cs.jhu.edu>
Committed: Sun Aug 21 07:01:17 2016 -0500

----------------------------------------------------------------------
 src/main/java/org/apache/joshua/decoder/phrase/Stacks.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/d6820c6f/src/main/java/org/apache/joshua/decoder/phrase/Stacks.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/joshua/decoder/phrase/Stacks.java b/src/main/java/org/apache/joshua/decoder/phrase/Stacks.java
index c642226..dd56eb0 100644
--- a/src/main/java/org/apache/joshua/decoder/phrase/Stacks.java
+++ b/src/main/java/org/apache/joshua/decoder/phrase/Stacks.java
@@ -267,7 +267,7 @@ public class Stacks {
       
       float finalTransitionScore = ComputeNodeResult.computeFinalCost(featureFunctions, tailNodes, 0, sentence.length(), null, sentence);
 
-      System.err.println(String.format("createGoalNode: final score: %f -> %f", score, finalTransitionScore));
+//      System.err.println(String.format("createGoalNode: final score: %f -> %f", score, finalTransitionScore));
       
       if (null == this.end)
         this.end = new Hypothesis(null, score + finalTransitionScore, hyp, sentence.length(), null);