mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-11 05:52:56 +03:00
0e6517b428
- moving some stuff from PhraseDictionaryTree to GenerateTuples - removing some obsolete code git-svn-id: https://mosesdecoder.svn.sourceforge.net/svnroot/mosesdecoder/trunk@359 1f5c12ca-751b-0410-a591-d2e778427230
13 lines
330 B
C++
13 lines
330 B
C++
// $Id$
|
|
#ifndef GENERATETUPLES_H_
|
|
#define GENERATETUPLES_H_
|
|
#include "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
|