summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/test_hg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_hg.rb b/test/test_hg.rb
index 67ff08a..6311bac 100755
--- a/test/test_hg.rb
+++ b/test/test_hg.rb
@@ -12,7 +12,7 @@ def main
#hypergraph, nodes_by_id = HG::read_hypergraph_from_json('../example/3/3.json', semiring, true)
path, score = HG::viterbi_path hypergraph, nodes_by_id[-1], semiring
s = HG::derive path, path.last.head, []
- hypergraph.nodes.each { |i| puts "#{i.id} #{i.score}" }
+ path.each { |e| puts "#{e.rule}" }
puts "---"
puts "#{s.map { |i| i.word }.join ' '}"
puts Math.log score