diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-06-18 20:28:42 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-06-18 20:28:42 -0400 |
commit | b89a1d3cb72ac36c137d6ae342f48ab9b8ee6655 (patch) | |
tree | 74dbff7519a3f3fe6906fff44128563300fec19b /utils/ccrp_onetable.h | |
parent | 953ec50e659084c13433ea311f6a07e7e1b292f8 (diff) |
add non-const iterators to sparse vector, speed up model1 code
Diffstat (limited to 'utils/ccrp_onetable.h')
-rw-r--r-- | utils/ccrp_onetable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccrp_onetable.h b/utils/ccrp_onetable.h index 1fe01b0e..abe399ea 100644 --- a/utils/ccrp_onetable.h +++ b/utils/ccrp_onetable.h @@ -183,7 +183,7 @@ class CCRP_OneTable { assert(has_discount_prior() || has_alpha_prior()); DiscountResampler dr(*this); ConcentrationResampler cr(*this); - for (int iter = 0; iter < nloop; ++iter) { + for (unsigned iter = 0; iter < nloop; ++iter) { if (has_alpha_prior()) { alpha_ = slice_sampler1d(cr, alpha_, *rng, 0.0, std::numeric_limits<double>::infinity(), 0.0, niterations, 100*niterations); |