In learning about them myself, I wrote a perl script to generate a Kautz graph: http://ix.io/36j/
It takes the degree as the first argument and the dimension and the second, and outputs a list of edges as <from> <to> tuples, one per line.
I still need to write the Kautz::Graph class (stubbed in the file above) to embody a full set of the Kautz nodes with the same degree and dimension parameters, and see about modifying it to generate dot so it can make a nice graphic.
Posted Oct 6, 2012 8:26 UTC (Sat) by eternaleye (guest, #67051)
[Link]
...And I just realized I misread my own code. It actually prints the names of the nodes, it's just that the symbols of the name are space-separated since they can be any positive integer <= degree.
Well, one more thing to remedy.
How 3.6 nearly broke PostgreSQL
Posted Oct 6, 2012 8:45 UTC (Sat) by eternaleye (guest, #67051)
[Link]
Alright, here's a version that has a Kautz::Graph class, and prints both nodes and edges when run: http://ix.io/36k/