blob: d22397e360b9d80a550f6f2f4d6f42f24aeed675 (
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
|