// intersect.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. // // // \file // Class to compute the intersection of two FSAs #ifndef FST_LIB_INTERSECT_H__ #define FST_LIB_INTERSECT_H__ #include "fst/lib/compose.h" namespace fst { template struct IntersectFstOptions : public ComposeFstOptions { }; // Computes the intersection (Hadamard product) of two FSAs. This // version is a delayed Fst. Only strings that are in both automata // are retained in the result. // // The two arguments must be acceptors. One of the arguments must be // label-sorted. // // Complexity: same as ComposeFst. // // Caveats: same as ComposeFst. template class IntersectFst : public ComposeFst { public: using ComposeFst::Impl; typedef A Arc; typedef typename A::Weight Weight; typedef typename A::StateId StateId; IntersectFst(const Fst &fst1, const Fst &fst2) : ComposeFst(fst1, fst2) { if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true)) LOG(FATAL) << "IntersectFst: arguments not both acceptors"; uint64 props1 = fst1.Properties(kFstProperties, false); uint64 props2 = fst2.Properties(kFstProperties, false); Impl()->SetProperties(IntersectProperties(props1, props2), kCopyProperties); } template IntersectFst(const Fst &fst1, const Fst &fst2, const IntersectFstOptions &opts) : ComposeFst(fst1, fst2, ComposeFstOptions(opts)) { if (!fst1.Properties(kAcceptor, true) || !fst2.Properties(kAcceptor, true)) LOG(FATAL) << "IntersectFst: arguments not both acceptors"; uint64 props1 = fst1.Properties(kFstProperties, false); uint64 props2 = fst2.Properties(kFstProperties, false); Impl()->SetProperties(IntersectProperties(props1, props2), kCopyProperties); } IntersectFst(const IntersectFst &fst) : ComposeFst(fst) {} virtual IntersectFst *Copy() const { return new IntersectFst(*this); } }; // Specialization for IntersectFst. template class StateIterator< IntersectFst > : public StateIterator< ComposeFst > { public: explicit StateIterator(const IntersectFst &fst) : StateIterator< ComposeFst >(fst) {} }; // Specialization for IntersectFst. template class ArcIterator< IntersectFst > : public ArcIterator< ComposeFst > { public: typedef typename A::StateId StateId; ArcIterator(const IntersectFst &fst, StateId s) : ArcIterator< ComposeFst >(fst, s) {} }; // Useful alias when using StdArc. typedef IntersectFst StdIntersectFst; typedef ComposeOptions IntersectOptions; // Computes the intersection (Hadamard product) of two FSAs. This // version writes the intersection to an output MurableFst. Only // strings that are in both automata are retained in the result. // // The two arguments must be acceptors. One of the arguments must be // label-sorted. // // Complexity: same as Compose. // // Caveats: same as Compose. template void Intersect(const Fst &ifst1, const Fst &ifst2, MutableFst *ofst, const IntersectOptions &opts = IntersectOptions()) { IntersectFstOptions<> nopts; nopts.gc_limit = 0; // Cache only the last state for fastest copy. *ofst = IntersectFst(ifst1, ifst2, nopts); if (opts.connect) Connect(ofst); } } // namespace fst #endif // FST_LIB_INTERSECT_H__