pre-determinize-test.cc File Reference
Include dependency graph for pre-determinize-test.cc:

Go to the source code of this file.

Namespaces

 fst
 For an extended explanation of the framework of which grammar-fsts are a part, please see Support for grammars and graphs with on-the-fly parts. (i.e.
 

Functions

template<class Arc >
void TestPreDeterminize ()
 
template<class Arc >
void TestAddSelfLoops ()
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 213 of file pre-determinize-test.cc.

References rnnlm::i.

213  {
214  for (int i = 0;i < 10;i++) { // run it multiple times; it's a randomized testing algorithm.
215  fst::TestPreDeterminize<fst::StdArc>();
216  }
217  for (int i = 0;i < 5;i++) {
218  fst::TestAddSelfLoops<fst::StdArc>();
219  }
220 }