| 175 | } |
| 176 | |
| 177 | void 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 | |
| 186 | yostream& operator << (yostream& s, const Fsm& fsm) { fsm.DumpTo(s); return s; } |
| 187 |