Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shared.h « eppex « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ed70d3368c804b9666f181893337a9b5fd2164e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * 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