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:
leven101 2010-05-25 13:11:42 +00:00
parent 142a05c64d
commit 4338889c71

View File

@ -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