#include <iterator>#include <utility>#include <vector>#include <fst/cache.h>#include <fst/expanded-fst.h>#include <fst/fst-decl.h>#include <fst/matcher.h>#include <fst/test-properties.h>#include <fst/util.h>

Go to the source code of this file.
Classes | |
| struct | fst::CompactFstOptions |
| class | fst::CompactFstData< A, C, U > |
| class | fst::CompactFstImpl< A, C, U > |
| class | fst::CompactFst< A, C, U > |
| class | fst::StateIterator< CompactFst< A, C, U > > |
| class | fst::ArcIterator< CompactFst< A, C, U > > |
| class | fst::StringCompactor< A > |
| bool Done() const { return pos_ >= num_arcs_; } More... | |
| class | fst::WeightedStringCompactor< A > |
| Compactor for weighted string FSTs. More... | |
| class | fst::UnweightedAcceptorCompactor< A > |
| Compactor for unweighted acceptor FSTs. More... | |
| class | fst::AcceptorCompactor< A > |
| Compactor for weighted acceptor FSTs. More... | |
| class | fst::UnweightedCompactor< A > |
| Compactor for unweighted FSTs. More... | |
Namespaces | |
| namespace | fst |
For optional argument declarations. | |
Typedefs | |
| typedef CompactFst< StdArc, StringCompactor< StdArc > > | fst::StdCompactStringFst |
| Uselful aliases when using StdArc. | |
| typedef CompactFst< StdArc, WeightedStringCompactor < StdArc > > | fst::StdCompactWeightedStringFst |
| typedef CompactFst< StdArc, AcceptorCompactor< StdArc > > | fst::StdCompactAcceptorFst |
| typedef CompactFst< StdArc, UnweightedCompactor< StdArc > > | fst::StdCompactUnweightedFst |
| typedef CompactFst< StdArc, UnweightedAcceptorCompactor < StdArc > > | fst::StdCompactUnweightedAcceptorFst |
Functions | |
| template<class F , class G > | |
| void | fst::Cast (const F &, G *) |
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: allauzen@google.com (Cyril Allauzen)
FST Class for memory-efficient representation of common types of FSTs: linear automata, acceptors, unweighted FSTs, ...
Definition in file compact-fst.h.
1.7.1