mosesdecoder/misc/GenerateTuples.h
zens 0e6517b428 - fixing already fixed bugs that have been re-introduced by someone
- 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
2006-07-28 18:14:20 +00:00

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