mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
removed debug statments
git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@3270 1f5c12ca-751b-0410-a591-d2e778427230
This commit is contained in:
parent
142a05c64d
commit
4338889c71
@ -66,7 +66,7 @@ int DynSuffixArray::Rank(unsigned word, unsigned idx) {
|
||||
int DynSuffixArray::F_firstIdx(unsigned word) {
|
||||
// return index of first row where word is found in m_F
|
||||
int low = std::lower_bound(m_F->begin(), m_F->end(), word) - m_F->begin();
|
||||
cerr << "in F_firstIdx with word = " << word << " and low = " << low << " and F->size() =" << m_F->size() << endl;
|
||||
//cerr << "in F_firstIdx with word = " << word << " and low = " << low << " and F->size() =" << m_F->size() << endl;
|
||||
if((low >= m_F->size()) || (m_F->at(low) < word))
|
||||
return -1;
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user