Home | History | Annotate | Download | only in fst

Lines Matching defs:Verify

0 // verify.h
19 // Function to verify an Fst's contents
32 bool Verify(const Fst<Arc> &fst, bool allow_negative_labels = false) {
49 LOG(ERROR) << "Verify: Fst start state ID unset";
52 LOG(ERROR) << "Verify: Fst start state ID exceeds number of states";
66 LOG(ERROR) << "Verify: Fst input label ID of arc at position "
70 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel
76 LOG(ERROR) << "Verify: Fst output label ID of arc at position "
80 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel
86 LOG(ERROR) << "Verify: Fst weight of arc at position "
90 LOG(ERROR) << "Verify: Fst destination state ID of arc at position "
94 LOG(ERROR) << "Verify: Fst destination state ID of arc at position "
102 LOG(ERROR) << "Verify: Fst final weight of state " << s << " is invalid";
108 LOG(ERROR) << "Verify: Fst error property is set";
116 LOG(ERROR) << "Verify: stored Fst properties incorrect "