table-matcher-test.cc File Reference
Include dependency graph for table-matcher-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 TestTableMatcher (bool connect, bool left)
 
template<class Arc >
void TestTableMatcherCacheLeft (bool connect)
 
template<class Arc >
void TestTableMatcherCacheRight (bool connect)
 
int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 245 of file table-matcher-test.cc.

References rnnlm::i.

245  {
246  using namespace fst;
247  for (int i = 0;i < 1;i++) {
248  TestTableMatcher<fst::StdArc>(true, true);
249  TestTableMatcher<fst::StdArc>(false, true);
250  TestTableMatcher<fst::StdArc>(true, false);
251  TestTableMatcher<fst::StdArc>(false, false);
252  TestTableMatcherCacheLeft<fst::StdArc>(true);
253  TestTableMatcherCacheLeft<fst::StdArc>(false);
254  TestTableMatcherCacheRight<fst::StdArc>(true);
255  TestTableMatcherCacheRight<fst::StdArc>(false);
256  }
257 }
For an extended explanation of the framework of which grammar-fsts are a part, please see Support for...
Definition: graph.dox:21