diff options
author | Chris Dyer <cdyer@cab.ark.cs.cmu.edu> | 2012-10-16 00:37:21 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cab.ark.cs.cmu.edu> | 2012-10-16 00:37:21 -0400 |
commit | 09a522afef40e514e741ddf5f9bbc61cfb2170e8 (patch) | |
tree | a6650e02b017ce0b3ed534ad76d6a8e45a26ab0c /decoder/exp_semiring.h | |
parent | 21a8287a2e1451db41c35494647c7b8c3e7e5adc (diff) |
clean up of bad header includes
Diffstat (limited to 'decoder/exp_semiring.h')
-rw-r--r-- | decoder/exp_semiring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/exp_semiring.h b/decoder/exp_semiring.h index 111eaaf1..2a9034bb 100644 --- a/decoder/exp_semiring.h +++ b/decoder/exp_semiring.h @@ -59,7 +59,7 @@ struct PRWeightFunction { explicit PRWeightFunction(const PWeightFunction& pwf = PWeightFunction(), const RWeightFunction& rwf = RWeightFunction()) : pweight(pwf), rweight(rwf) {} - PRPair<P,R> operator()(const Hypergraph::Edge& e) const { + PRPair<P,R> operator()(const HG::Edge& e) const { const P p = pweight(e); const R r = rweight(e); return PRPair<P,R>(p, r * p); |