From 64ec34df5d427ead0e2281d45bae5891c0adb786 Mon Sep 17 00:00:00 2001 From: Ulrich Germann Date: Thu, 2 Jul 2015 23:49:00 +0100 Subject: Proper indentation with spaces (no tabs). --- moses/TranslationModel/UG/mm/ug_prep_phrases.h | 52 +++++++++++++------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/moses/TranslationModel/UG/mm/ug_prep_phrases.h b/moses/TranslationModel/UG/mm/ug_prep_phrases.h index 421d6f090..93a5ea82a 100644 --- a/moses/TranslationModel/UG/mm/ug_prep_phrases.h +++ b/moses/TranslationModel/UG/mm/ug_prep_phrases.h @@ -46,32 +46,32 @@ struct StatsCollector if (!lcache) lcache.reset(new lcache_t); if (m.down()) { - do - { - if (!r.extend(m.getToken(-1)->id())) continue; - this->process(m, r); - uint64_t pid = r.getPid(); - sptr stats; - if (hcache) stats = hcache->get(pid); - if (!stats && pcache) - { - sptr const* foo = pcache->get(pid); - if (foo) stats = *foo; - } - if (!stats) // need to sample - { - BitextSampler s(bitext.get(), r, bias, sample_size, method); - stats = s.stats(); - if (hcache) hcache->set(pid,stats); - if (pcache && r.ca() >= pcache_th) pcache->set(pid,stats); - if (tpool) tpool->add(s); - else s(); - } - (*lcache)[pid] = stats; - r.up(); - } - while (m.over()); - m.up(); + do + { + if (!r.extend(m.getToken(-1)->id())) continue; + this->process(m, r); + uint64_t pid = r.getPid(); + sptr stats; + if (hcache) stats = hcache->get(pid); + if (!stats && pcache) + { + sptr const* foo = pcache->get(pid); + if (foo) stats = *foo; + } + if (!stats) // need to sample + { + BitextSampler s(bitext.get(), r, bias, sample_size, method); + stats = s.stats(); + if (hcache) hcache->set(pid,stats); + if (pcache && r.ca() >= pcache_th) pcache->set(pid,stats); + if (tpool) tpool->add(s); + else s(); + } + (*lcache)[pid] = stats; + r.up(); + } + while (m.over()); + m.up(); } } }; -- cgit v1.2.3