mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 14:32:38 +03:00
23 lines
466 B
C
23 lines
466 B
C
|
/**
|
||
|
* Declaration of functionality shared between counter, eppex and
|
||
|
* (not yet finished) memscoring eppex.
|
||
|
*
|
||
|
* (C) Moses: http://www.statmt.org/moses/
|
||
|
* (C) Ceslav Przywara, UFAL MFF UK, 2011
|
||
|
*
|
||
|
* $Id$
|
||
|
*/
|
||
|
|
||
|
#ifndef SHARED_H
|
||
|
#define SHARED_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
std::string get_lossy_counting_params_format(void);
|
||
|
|
||
|
bool parse_lossy_counting_params(const std::string& param);
|
||
|
|
||
|
void read_optional_params(int argc, char* argv[], int optionalParamsStart);
|
||
|
|
||
|
#endif
|