Graph drawing algorithms - I'm trying to render finite state automata

≯℡__Kan透↙ 提交于 2019-11-28 21:58:07
AAA

Graph drawing is a fairly complex subject due to the fact that different graphs need to be drawn in different ways - there is no one algorithm fits all approach.

May I suggest the following resource:

It should be a good starting point, page 15 provides a number of links and books to follow up.

To get started with graph drawing algorithms, see this famous paper:

It describes the algorithm used by dot, a graphviz drawing program. On the linked page you will find many more references. You will also find some more papers when you google for "drawing directed graphs".

Also, you might find OpenFst convenient, a general toolkit for finite-state machines. It has a binary called fstdraw, which will output a finite-state machine in a format that can be read by dot.

Check out Graphviz. It's an open source graph visualization software.

EDIT: Check out the documentation section which links to some of the layout algorithms used.

Maybe, I'm a little late in answering this question. Anyway this is a very comprehensive reference to the different types of graphs and the algorithms to visualize them.

http://www.cs.brown.edu/~rt/gdhandbook/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!