// difference.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. // // Copyright 2005-2010 Google, Inc. // Author: riley@google.com (Michael Riley) // // \file // Class to compute the difference between two FSAs #ifndef FST_LIB_DIFFERENCE_H__ #define FST_LIB_DIFFERENCE_H__ #include using std::vector; #include #include #include #include namespace fst { template >, class F = SequenceComposeFilter, class T = GenericComposeStateTable > struct DifferenceFstOptions : public ComposeFstOptions { explicit DifferenceFstOptions(const CacheOptions &opts, M *mat1 = 0, M *mat2 = 0, F *filt = 0, T *sttable= 0) : ComposeFstOptions(mat1, mat2, filt, sttable) { } DifferenceFstOptions() {} }; // Computes the difference between two FSAs. This version is a delayed // Fst. Only strings that are in the first automaton but not in second // are retained in the result. // // The first argument must be an acceptor; the second argument must be // an unweighted, epsilon-free, deterministic acceptor. One of the // arguments must be label-sorted. // // Complexity: same as ComposeFst. // // Caveats: same as ComposeFst. template class DifferenceFst : public ComposeFst { public: using ImplToFst< ComposeFstImplBase >::SetImpl; using ImplToFst< ComposeFstImplBase >::GetImpl; using ComposeFst::CreateBase1; typedef A Arc; typedef typename A::Weight Weight; typedef typename A::StateId StateId; // A - B = A ^ B'. DifferenceFst(const Fst &fst1, const Fst &fst2, const CacheOptions &opts = CacheOptions()) { typedef RhoMatcher< Matcher > > R; ComplementFst cfst(fst2); ComposeFstOptions copts(CacheOptions(), new R(fst1, MATCH_NONE), new R(cfst, MATCH_INPUT, ComplementFst::kRhoLabel)); SetImpl(CreateBase1(fst1, cfst, copts)); if (!fst1.Properties(kAcceptor, true)) { FSTERROR() << "DifferenceFst: 1st argument not an acceptor"; GetImpl()->SetProperties(kError, kError); } } template DifferenceFst(const Fst &fst1, const Fst &fst2, const DifferenceFstOptions &opts) { typedef RhoMatcher R; ComplementFst cfst(fst2); ComposeFstOptions copts(opts); copts.matcher1 = new R(fst1, MATCH_NONE, kNoLabel, MATCHER_REWRITE_ALWAYS, opts.matcher1); copts.matcher2 = new R(cfst, MATCH_INPUT, ComplementFst::kRhoLabel, MATCHER_REWRITE_ALWAYS, opts.matcher2); SetImpl(CreateBase1(fst1, cfst, copts)); if (!fst1.Properties(kAcceptor, true)) { FSTERROR() << "DifferenceFst: 1st argument not an acceptor"; GetImpl()->SetProperties(kError, kError); } } // See Fst<>::Copy() for doc. DifferenceFst(const DifferenceFst &fst, bool safe = false) : ComposeFst(fst, safe) {} // Get a copy of this DifferenceFst. See Fst<>::Copy() for further doc. virtual DifferenceFst *Copy(bool safe = false) const { return new DifferenceFst(*this, safe); } }; // Specialization for DifferenceFst. template class StateIterator< DifferenceFst > : public StateIterator< ComposeFst > { public: explicit StateIterator(const DifferenceFst &fst) : StateIterator< ComposeFst >(fst) {} }; // Specialization for DifferenceFst. template class ArcIterator< DifferenceFst > : public ArcIterator< ComposeFst > { public: typedef typename A::StateId StateId; ArcIterator(const DifferenceFst &fst, StateId s) : ArcIterator< ComposeFst >(fst, s) {} }; // Useful alias when using StdArc. typedef DifferenceFst StdDifferenceFst; typedef ComposeOptions DifferenceOptions; // Computes the difference between two FSAs. This version is writes // the difference to an output MutableFst. Only strings that are in // the first automaton but not in second are retained in the result. // // The first argument must be an acceptor; the second argument must be // an unweighted, epsilon-free, deterministic acceptor. One of the // arguments must be label-sorted. // // Complexity: same as Compose. // // Caveats: same as Compose. template void Difference(const Fst &ifst1, const Fst &ifst2, MutableFst *ofst, const DifferenceOptions &opts = DifferenceOptions()) { typedef Matcher< Fst > M; if (opts.filter_type == AUTO_FILTER) { CacheOptions nopts; nopts.gc_limit = 0; // Cache only the last state for fastest copy. *ofst = DifferenceFst(ifst1, ifst2, nopts); } else if (opts.filter_type == SEQUENCE_FILTER) { DifferenceFstOptions dopts; dopts.gc_limit = 0; // Cache only the last state for fastest copy. *ofst = DifferenceFst(ifst1, ifst2, dopts); } else if (opts.filter_type == ALT_SEQUENCE_FILTER) { DifferenceFstOptions > dopts; dopts.gc_limit = 0; // Cache only the last state for fastest copy. *ofst = DifferenceFst(ifst1, ifst2, dopts); } else if (opts.filter_type == MATCH_FILTER) { DifferenceFstOptions > dopts; dopts.gc_limit = 0; // Cache only the last state for fastest copy. *ofst = DifferenceFst(ifst1, ifst2, dopts); } if (opts.connect) Connect(ofst); } } // namespace fst #endif // FST_LIB_DIFFERENCE_H__