aboutsummaryrefslogtreecommitdiff
path: root/src/script/prune.cc
blob: 36ca22f73078461472116e12ef76f4b72dda85c7 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76

// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Copyright 2005-2010 Google, Inc.
// Author: jpr@google.com (Jake Ratkiewicz)

#include <fst/script/fst-class.h>
#include <fst/script/script-impl.h>
#include <fst/script/prune.h>

namespace fst {
namespace script {


// 1
void Prune(MutableFstClass *fst, const PruneOptions &opts) {
  PruneArgs1 args(fst, opts);

  Apply<Operation<PruneArgs1> >("Prune", fst->ArcType(), &args);
}

// 2
void Prune(const FstClass &ifst, MutableFstClass *fst,
           const PruneOptions &opts) {
  PruneArgs2 args(ifst, fst, opts);

  Apply<Operation<PruneArgs2> >("Prune", fst->ArcType(), &args);
}

// 3
void Prune(const FstClass &ifst,
           MutableFstClass *ofst,
           const WeightClass& weight_threshold,
           int64 state_threshold, float delta)  {
  PruneArgs3 args(ifst, ofst, weight_threshold, state_threshold, delta);

  Apply<Operation<PruneArgs3> >("Prune", ifst.ArcType(), &args);
}

// 4
void Prune(MutableFstClass *fst, const WeightClass& weight_threshold,
           int64 state_threshold, float delta) {
  PruneArgs4 args(fst, weight_threshold, state_threshold, delta);

  Apply<Operation<PruneArgs4> >("Prune", fst->ArcType(), &args);
}

// 1
REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs1);
REGISTER_FST_OPERATION(Prune, LogArc, PruneArgs1);
REGISTER_FST_OPERATION(Prune, Log64Arc, PruneArgs1);
// 2
REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs2);
REGISTER_FST_OPERATION(Prune, LogArc, PruneArgs2);
REGISTER_FST_OPERATION(Prune, Log64Arc, PruneArgs2);
// 3
REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs3);
REGISTER_FST_OPERATION(Prune, LogArc, PruneArgs3);
REGISTER_FST_OPERATION(Prune, Log64Arc, PruneArgs3);
// 4
REGISTER_FST_OPERATION(Prune, StdArc, PruneArgs4);
REGISTER_FST_OPERATION(Prune, LogArc, PruneArgs4);
REGISTER_FST_OPERATION(Prune, Log64Arc, PruneArgs4);

}  // namespace script
}  // namespace fst