determinize-star-test.cc File Reference
Include dependency graph for determinize-star-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 TestDeterminizeGeneral ()
 
template<class Arc >
void TestDeterminize ()
 
template<class Arc >
void TestDeterminize2 ()
 
template<class Arc >
void TestPush ()
 
template<class Arc >
void TestMinimize ()
 
template<class Arc , class inttype >
void TestStringRepository ()
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 494 of file determinize-star-test.cc.

References rnnlm::i.

494  {
495  for (int i = 0;i < 3;i++) { // We would need more iterations to check
496  // this properly.
497  fst::TestStringRepository<fst::StdArc, int>();
498  fst::TestStringRepository<fst::StdArc, unsigned int>();
499  // Not for use with char, but this helps reveal some kinds of bugs.
500  fst::TestStringRepository<fst::StdArc, unsigned char>();
501  fst::TestStringRepository<fst::StdArc, char>();
502  fst::TestDeterminizeGeneral<fst::StdArc>();
503  fst::TestDeterminize<fst::StdArc>();
504  // fst::TestDeterminize2<fst::StdArc>();
505  fst::TestPush<fst::StdArc>();
506  fst::TestMinimize<fst::StdArc>();
507  }
508 }