summaryrefslogtreecommitdiff
path: root/decoder/inside_outside.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-07-29 21:04:14 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2012-07-29 21:04:14 -0400
commitc7d1b04980d9d90458625a7f8e92985c7409a78d (patch)
tree60dfa6bffc1a88af199cc5d456d9bba8aefd1107 /decoder/inside_outside.h
parentfd5e2c6858c7522917d6498bdb074b6d03cbacf2 (diff)
fix grammar converter to remove edges that cannot exist in any valid derivation
Diffstat (limited to 'decoder/inside_outside.h')
-rw-r--r--decoder/inside_outside.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/decoder/inside_outside.h b/decoder/inside_outside.h
index bb7f9fcc..f73a1d3f 100644
--- a/decoder/inside_outside.h
+++ b/decoder/inside_outside.h
@@ -41,10 +41,6 @@ WeightType Inside(const Hypergraph& hg,
WeightType* const cur_node_inside_score = &inside_score[i];
Hypergraph::EdgesVector const& in=hg.nodes_[i].in_edges_;
const unsigned num_in_edges = in.size();
- if (num_in_edges == 0) {
- *cur_node_inside_score = WeightType(1); //FIXME: why not call weight(edge) instead?
- continue;
- }
for (unsigned j = 0; j < num_in_edges; ++j) {
const Hypergraph::Edge& edge = hg.edges_[in[j]];
WeightType score = weight(edge);