Skip to content

Instantly share code, notes, and snippets.

@matarillo
Created November 1, 2009 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matarillo/223362 to your computer and use it in GitHub Desktop.
Save matarillo/223362 to your computer and use it in GitHub Desktop.
static NodeCollection CreateGraph()
{
return new NodeCollection()
.Add("a", "a'", "b", "b'", "c", "c'",
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"10", "11", "12", "13", "14", "15", "16", "17", "18", "19",
"20", "21", "22", "23", "24", "25", "26", "27", "28", "29")
.Link("0,1", "0,10", "0,21", "1,2", "1,28",
"2,3", "2,6", "3,4", "3,b'", "4,5",
"4,8", "5,6", "5,7", "6,11", "7,14",
"7,c'", "8,9", "8,10", "9,16", "9,a'",
"10,29", "11,14", "11,28", "12,13", "12,20",
"12,27", "13,14", "13,19", "15,16", "15,18",
"15,29", "16,17", "17,18", "17,c", "18,26",
"19,22", "19,28", "20,22", "20,25", "21,24",
"21,29", "22,23", "23,24", "23,a", "24,25",
"25,26", "26,27", "27,b");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment