Skip to content

Instantly share code, notes, and snippets.

@mjdominus
Created October 4, 2013 13:51
Show Gist options
  • Save mjdominus/6826238 to your computer and use it in GitHub Desktop.
Save mjdominus/6826238 to your computer and use it in GitHub Desktop.
graphviz input file for 22-vertex asymmetric cubic graph
graph g22 {
shape=circle;
0 [color=blue];
1 [color=green];
2 [color=green];
3 [color=green];
0 -- 1;
0 -- 2;
0 -- 3;
1 -- 4;
1 -- 5;
2 -- 7;
2 -- 15;
3 -- 8;
3 -- 9;
4 -- 10;
4 -- 11;
5 -- 11;
5 -- 13;
6 -- 14;
6 -- 15;
6 -- 16;
7 -- 16;
7 -- 17;
8 -- 18;
8 -- 19;
9 -- 20;
9 -- 21;
10 -- 12;
10 -- 21;
11 -- 12;
12 -- 13;
13 -- 14;
14 -- 15;
16 -- 17;
17 -- 18;
18 -- 20;
19 -- 20;
19 -- 21;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment