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

GenerateTuples.h « misc - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728f28823e82c7cdeeac1bda2bf324dfbe3cec2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// $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