1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| // See www.openfst.org for extensive documentation on this weighted
| // finite-state transducer library.
|
| #include <fst/script/fst-class.h>
| #include <fst/script/map.h>
| #include <fst/script/script-impl.h>
|
| namespace fst {
| namespace script {
|
| FstClass *Map(const FstClass &ifst, MapType map_type, float delta, double power,
| const WeightClass &weight) {
| if (!ifst.WeightTypesMatch(weight, "Map")) return nullptr;
| MapInnerArgs iargs(ifst, map_type, delta, power, weight);
| MapArgs args(iargs);
| Apply<Operation<MapArgs>>("Map", ifst.ArcType(), &args);
| return args.retval;
| }
|
| REGISTER_FST_OPERATION(Map, StdArc, MapArgs);
| REGISTER_FST_OPERATION(Map, LogArc, MapArgs);
| REGISTER_FST_OPERATION(Map, Log64Arc, MapArgs);
|
| } // namespace script
| } // namespace fst
|
|