From 51e8f4a5b9ffc96f3486ede77fe4511918156cf4 Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Thu, 8 Sep 2011 13:24:11 +0200 Subject: fix viterbi to work with non prob_t types --- decoder/viterbi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoder/viterbi.h b/decoder/viterbi.h index ac0b9a11..daee3d7a 100644 --- a/decoder/viterbi.h +++ b/decoder/viterbi.h @@ -25,7 +25,7 @@ typename WeightFunction::Weight Viterbi(const Hypergraph& hg, typedef typename WeightFunction::Weight WeightType; const int num_nodes = hg.nodes_.size(); std::vector vit_result(num_nodes); - std::vector vit_weight(num_nodes, WeightType::Zero()); + std::vector vit_weight(num_nodes, WeightType()); for (int i = 0; i < num_nodes; ++i) { const Hypergraph::Node& cur_node = hg.nodes_[i]; -- cgit v1.2.3