mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 06:22:14 +03:00
Formatting. Fixed order in which members are initialized.
This commit is contained in:
parent
b736fe2b61
commit
82a2639f22
@ -10,13 +10,15 @@ using namespace std;
|
|||||||
|
|
||||||
namespace Moses
|
namespace Moses
|
||||||
{
|
{
|
||||||
InputPath::InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms, const WordsRange &range, const InputPath *prevNode
|
InputPath::
|
||||||
,const ScorePair *inputScore)
|
InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms,
|
||||||
|
const WordsRange &range, const InputPath *prevNode,
|
||||||
|
const ScorePair *inputScore)
|
||||||
:m_prevNode(prevNode)
|
:m_prevNode(prevNode)
|
||||||
,m_phrase(phrase)
|
,m_phrase(phrase)
|
||||||
,m_sourceNonTerms(sourceNonTerms)
|
|
||||||
,m_range(range)
|
,m_range(range)
|
||||||
,m_inputScore(inputScore)
|
,m_inputScore(inputScore)
|
||||||
|
,m_sourceNonTerms(sourceNonTerms)
|
||||||
{
|
{
|
||||||
//cerr << "phrase=" << phrase << " m_inputScore=" << *m_inputScore << endl;
|
//cerr << "phrase=" << phrase << " m_inputScore=" << *m_inputScore << endl;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user