123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- /* test2.dot from the mipt-vis project on googlecode visualizing gcc rtl output or intel icc compiler with a spring embedder gui and xml conversion that into a dot graph with a python script */
- /* this uses \N replacement in node labels */
- /*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- * The four essential freedoms with GNU GPL software:
- * The freedom to run the program, for any purpose
- * The freedom to study how the program works, and change it to make it do what you wish
- * The freedom to redistribute copies so you can others
- * The freedom to distribute copies of your modified versions to others
- */
- digraph "g" {
- graph [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- ]
- node [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- shape = "rectangle"
- style = "solid"
- ]
- edge [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n0" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "node name is \N\l\"\N\""
- shape = "ellipse"
- style = "solid"
- ]
- "n1" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n2" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n3" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n4" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n5" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n6" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n7" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n8" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n9" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "rectangle"
- style = "solid"
- ]
- "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- label = "\N"
- shape = "ellipse"
- style = "solid"
- ]
- "n0" -> "n1" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n1" -> "n2" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n2" -> "n3" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n2" -> "n4" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n1" -> "n9" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n3" -> "n5" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n3" -> "n6" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n4" -> "n7" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n4" -> "n8" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n5" -> "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n6" -> "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n7" -> "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n8" -> "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n9" -> "n10" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- "n10" -> "n0" [
- fontsize = "14"
- fontname = "Times-Roman"
- fontcolor = "black"
- style = "solid"
- ]
- }
- /* end. */
|