Skip to content

Instantly share code, notes, and snippets.

@bluecookies
Created July 18, 2018 08:43
Show Gist options
  • Select an option

  • Save bluecookies/2a1033a7862ee12e714fa24e046294c0 to your computer and use it in GitHub Desktop.

Select an option

Save bluecookies/2a1033a7862ee12e714fa24e046294c0 to your computer and use it in GitHub Desktop.
// Example of a flawed graph for inserting nodes based on RPO ordering
// image
digraph {
0
3
4
19
21
22
23
24
0 -> 3
3 -> 4
0 -> 18
18 -> 19
18 -> 21
21 -> 22
21 -> 23
23 -> 19
19 -> 3
24 -> 21
22 -> 24
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment