2015-10-23 22:53:36 +03:00
|
|
|
/*
|
2015-11-03 17:20:10 +03:00
|
|
|
* PhraseImpl.cpp
|
2015-10-23 22:53:36 +03:00
|
|
|
*
|
|
|
|
* Created on: 23 Oct 2015
|
|
|
|
* Author: hieu
|
|
|
|
*/
|
2015-12-07 17:43:10 +03:00
|
|
|
#include <boost/functional/hash.hpp>
|
2015-10-23 22:53:36 +03:00
|
|
|
#include "Phrase.h"
|
|
|
|
#include "Word.h"
|
2015-10-28 19:11:12 +03:00
|
|
|
#include "MemPool.h"
|
2016-02-23 15:41:48 +03:00
|
|
|
#include "Scores.h"
|
2016-02-23 19:52:17 +03:00
|
|
|
#include "System.h"
|
2015-10-24 01:19:31 +03:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2015-12-10 23:49:30 +03:00
|
|
|
namespace Moses2
|
|
|
|
{
|
|
|
|
|
2016-03-17 21:11:05 +03:00
|
|
|
|
2016-02-23 15:41:48 +03:00
|
|
|
|
2016-03-03 22:40:33 +03:00
|
|
|
|
2016-02-25 20:50:44 +03:00
|
|
|
} // namespace
|
|
|
|
|