From ce9a18da4516f53ecf23fb7522562aef2d470397 Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Thu, 3 May 2012 20:57:19 -0400 Subject: fix for older gcc --- dtrain/score.cc | 2 +- gi/pf/transliterations.cc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dtrain/score.cc b/dtrain/score.cc index 71d3e5de..7b1f6be4 100644 --- a/dtrain/score.cc +++ b/dtrain/score.cc @@ -103,7 +103,7 @@ SmoothBleuScorer::Score(vector& hyp, vector& ref, i_bleu[j] += (1/((score_t)j+1)) * i_ng; } } - sum += exp(i_bleu[i])/(pow(2, N_-i)); + sum += exp(i_bleu[i])/(pow(2.0, static_cast(N_-i))); } return brevity_penalty(hyp_len, ref_len) * sum; } diff --git a/gi/pf/transliterations.cc b/gi/pf/transliterations.cc index 2200715e..b2996f65 100644 --- a/gi/pf/transliterations.cc +++ b/gi/pf/transliterations.cc @@ -118,7 +118,7 @@ struct TransliterationChunkConditionalModel { //double llh = Md::log_beta_density(dd, 10, 3) + Md::log_gamma_density(aa, 1, 1); double llh = //Md::log_beta_density(dd, 1, 1) + Md::log_gamma_density(dd + aa, 1, 1); - typename std::tr1::unordered_map, CCRP_NoTable, boost::hash > >::const_iterator it; + std::tr1::unordered_map, CCRP_NoTable, boost::hash > >::const_iterator it; for (it = r.begin(); it != r.end(); ++it) llh += it->second.log_crp_prob(aa); return llh; @@ -133,7 +133,7 @@ struct TransliterationChunkConditionalModel { }; void ResampleHyperparameters(MT19937* rng) { - typename std::tr1::unordered_map, CCRP_NoTable, boost::hash > >::iterator it; + std::tr1::unordered_map, CCRP_NoTable, boost::hash > >::iterator it; //const unsigned nloop = 5; const unsigned niterations = 10; //DiscountResampler dr(*this); -- cgit v1.2.3