2008-06-11 14:52:57 +04:00
|
|
|
// $Id$
|
|
|
|
// vim:tabstop=2
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2006 University of Edinburgh
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
#include "InputType.h"
|
2012-09-25 20:34:43 +04:00
|
|
|
#include "ChartTranslationOptions.h"
|
2013-10-02 23:02:05 +04:00
|
|
|
#include "StaticData.h"
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2010-05-04 01:41:28 +04:00
|
|
|
InputType::InputType(long translationId) : m_translationId(translationId)
|
|
|
|
{
|
2011-02-24 16:14:42 +03:00
|
|
|
m_frontSpanCoveredLength = 0;
|
|
|
|
m_sourceCompleted.resize(0);
|
2010-05-04 01:41:28 +04:00
|
|
|
}
|
|
|
|
|
2008-06-11 14:52:57 +04:00
|
|
|
InputType::~InputType() {}
|
|
|
|
|
|
|
|
TO_STRING_BODY(InputType);
|
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
std::ostream& operator<<(std::ostream& out,InputType const& x)
|
2008-06-11 14:52:57 +04:00
|
|
|
{
|
2011-02-24 16:14:42 +03:00
|
|
|
x.Print(out);
|
|
|
|
return out;
|
2008-06-11 14:52:57 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// default implementation is one column equals one word
|
|
|
|
int InputType::ComputeDistortionDistance(const WordsRange& prev, const WordsRange& current) const
|
|
|
|
{
|
|
|
|
int dist = 0;
|
2011-02-24 16:14:42 +03:00
|
|
|
if (prev.GetNumWordsCovered() == 0) {
|
|
|
|
dist = current.GetStartPos();
|
|
|
|
} else {
|
|
|
|
dist = (int)prev.GetEndPos() - (int)current.GetStartPos() + 1 ;
|
|
|
|
}
|
|
|
|
return abs(dist);
|
2008-06-11 14:52:57 +04:00
|
|
|
}
|
|
|
|
|
2010-05-11 01:18:47 +04:00
|
|
|
bool InputType::CanIGetFromAToB(size_t /*start*/, size_t /*end*/) const
|
2008-06-11 14:52:57 +04:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-09-25 20:34:43 +04:00
|
|
|
std::vector <ChartTranslationOptions*> InputType::GetXmlChartTranslationOptions() const
|
2012-05-18 14:02:51 +04:00
|
|
|
{
|
|
|
|
// default. return nothing
|
2012-09-25 20:34:43 +04:00
|
|
|
std::vector <ChartTranslationOptions*> ret;
|
2012-05-18 14:02:51 +04:00
|
|
|
return ret;
|
|
|
|
}
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|