MCPcopy Create free account
hub / github.com/catboost/catboost / DumpTo

Method DumpTo

library/cpp/regex/pire/pire/fsm.cpp:177–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

175}
176
177void Fsm::DumpTo(yostream& s, const ystring& name) const
178{
179 s << "digraph {\n \"initial\"[shape=\"plaintext\",label=\"" << name << "\"]\n\n";
180 for (size_t state = 0; state < Size(); ++state) {
181 DumpState(s, state);
182 }
183 s << "}\n\n";
184}
185
186yostream& operator << (yostream& s, const Fsm& fsm) { fsm.DumpTo(s); return s; }
187

Callers 1

fsm.cppFile · 0.45

Calls 1

SizeFunction · 0.50

Tested by

no test coverage detected