mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-26 05:14:36 +03:00
13 lines
372 B
C++
13 lines
372 B
C++
// $Id$
|
|
#ifndef GENERATETUPLES_H_
|
|
#define GENERATETUPLES_H_
|
|
#include "moses/PhraseDictionaryTree.h"
|
|
|
|
class ConfusionNet;
|
|
|
|
void GenerateCandidates(const ConfusionNet& src,
|
|
const std::vector<PhraseDictionaryTree const*>& pdicts,
|
|
const std::vector<std::vector<float> >& weights,
|
|
int verbose=0) ;
|
|
#endif
|