Created
July 18, 2018 08:43
-
-
Save bluecookies/2a1033a7862ee12e714fa24e046294c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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