mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 21:42:19 +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
|
||||
{
|
||||
InputPath::InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms, const WordsRange &range, const InputPath *prevNode
|
||||
,const ScorePair *inputScore)
|
||||
InputPath::
|
||||
InputPath(const Phrase &phrase, const NonTerminalSet &sourceNonTerms,
|
||||
const WordsRange &range, const InputPath *prevNode,
|
||||
const ScorePair *inputScore)
|
||||
:m_prevNode(prevNode)
|
||||
,m_phrase(phrase)
|
||||
,m_sourceNonTerms(sourceNonTerms)
|
||||
,m_range(range)
|
||||
,m_inputScore(inputScore)
|
||||
,m_sourceNonTerms(sourceNonTerms)
|
||||
{
|
||||
//cerr << "phrase=" << phrase << " m_inputScore=" << *m_inputScore << endl;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user