Sophie

Sophie

distrib > * > 2009.0 > i586 > by-pkgid > 652f2135c89f730e09dcd4ca2b870fb5 > files > 4

openfst-devel-0.0.beta-1mdv2008.1.i586.rpm

// arcfilter.h
//
// 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.
//
// Author: riley@google.com (Michael Riley)
//
// \file
// Function objects to restrict which arcs are traversed in an FST.

#ifndef FST_LIB_ARCFILTER_H__
#define FST_LIB_ARCFILTER_H__

namespace fst {

// True for all arcs.
template <class A>
class AnyArcFilter {
public:
  bool operator()(const A &arc) const { return true; }
};


// True for (input/output) epsilon arcs.
template <class A>
class EpsilonArcFilter {
public:
  bool operator()(const A &arc) const {
    return arc.ilabel == 0 && arc.olabel == 0;
  }
};

}  // namespace fst

#endif  // FST_LIB_ARCFILTER_H__