// See www.openfst.org for extensive documentation on this weighted // finite-state transducer library. #ifndef FST_SCRIPT_VERIFY_H_ #define FST_SCRIPT_VERIFY_H_ #include #include #include namespace fst { namespace script { using VerifyArgs = WithReturnValue; template void Verify(VerifyArgs *args) { const Fst &fst = *(args->args.GetFst()); args->retval = Verify(fst); } bool Verify(const FstClass &fst); } // namespace script } // namespace fst #endif // FST_SCRIPT_VERIFY_H_