blob: 0a8615b5856014554b26d139cb19ec9af9f823cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _APPLY_FSA_MODELS_H_
#define _APPLY_FSA_MODELS_H_
#include "ff_fsa_dynamic.h"
struct FsaFeatureFunction;
struct Hypergraph;
struct SentenceMetadata;
void ApplyFsaModels(const Hypergraph& in,
const SentenceMetadata& smeta,
const FsaFeatureFunction& fsa,
Hypergraph* out);
#endif
|