summaryrefslogtreecommitdiff
path: root/decoder/hg.h
diff options
context:
space:
mode:
authoradam.d.lopez <adam.d.lopez@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-15 18:11:12 +0000
committeradam.d.lopez <adam.d.lopez@ec762483-ff6d-05da-a07a-a48fb63a330f>2010-07-15 18:11:12 +0000
commit272108e70b3462fdf5011f1d4dc7ec635259e344 (patch)
treef5c64f9b40e68edff9db8965c9c3dd12a111a6b8 /decoder/hg.h
parent6f81f990dae050f7258cb2f560dad4fb46cd6c26 (diff)
Fix bug in Density/BeamPruneInsideOutside
-only affected code calling these (legacy) functions, which have been refactored. -DensityPIO implemented BeamPIO and vice versa. git-svn-id: https://ws10smt.googlecode.com/svn/trunk@266 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/hg.h')
-rw-r--r--decoder/hg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/hg.h b/decoder/hg.h
index c7fa0fc1..a21a7acf 100644
--- a/decoder/hg.h
+++ b/decoder/hg.h
@@ -194,12 +194,12 @@ class Hypergraph {
// legacy:
void DensityPruneInsideOutside(const double scale, const bool use_sum_prod_semiring, const double density,const EdgeMask* preserve_mask = NULL) {
- PruneInsideOutside(density,0,preserve_mask,use_sum_prod_semiring,scale);
+ PruneInsideOutside(0,density,preserve_mask,use_sum_prod_semiring,scale);
}
// legacy:
void BeamPruneInsideOutside(const double scale, const bool use_sum_prod_semiring, const double alpha,const EdgeMask* preserve_mask = NULL) {
- PruneInsideOutside(0,alpha,preserve_mask,use_sum_prod_semiring,scale);
+ PruneInsideOutside(alpha,0,preserve_mask,use_sum_prod_semiring,scale);
}
// report nodes, edges, paths