00001 00002 /// Licensed under the Apache License, Version 2.0 (the "License"); 00003 /// you may not use this file except in compliance with the License. 00004 /// You may obtain a copy of the License at 00005 /// 00006 /// http://www.apache.org/licenses/LICENSE-2.0 00007 /// 00008 /// Unless required by applicable law or agreed to in writing, software 00009 /// distributed under the License is distributed on an "AS IS" BASIS, 00010 /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00011 /// See the License for the specific language governing permissions and 00012 /// limitations under the License. 00013 /// 00014 /// Copyright 2005-2010 Google, Inc. 00015 /// Author: jpr@google.com (Jake Ratkiewicz) 00016 00017 /// This is an experimental push-down transducer(PDT) library. A PDT is 00018 /// encoded as an FST, where some transitions are labeled with open or close 00019 /// parentheses. To be interpreted as a PDT, the parentheses must balance on a 00020 /// path. 00021 00022 #ifndef FST_EXTENSIONS_PDT_PDTLIB_H_ 00023 #define FST_EXTENSIONS_PDT_PDTLIB_H_ 00024 00025 #include <fst/extensions/pdt/pdt.h> 00026 #include <fst/extensions/pdt/compose.h> 00027 #include <fst/extensions/pdt/expand.h> 00028 #include <fst/extensions/pdt/replace.h> 00029 00030 #endif /// FST_EXTENSIONS_PDT_PDTLIB_H_ 00031
1.7.1