sfgdemo.txt 309 B

1234567891011121314151617181920212223242526272829
  1. # this is a comment line starting with '#'
  2. # first all nodes must be in this graph with single uniq number
  3. # node numbers must start with 1
  4. # then edges with two numbers as from/to node
  5. # example: '10 12' means edge from node 10 to 12
  6. #
  7. 1
  8. 2
  9. 3
  10. 4
  11. 5
  12. 6
  13. 7
  14. 8
  15. 4 5
  16. 4 6
  17. 7 6
  18. 8 7
  19. 8 5
  20. 5 6
  21. 3 8
  22. 3 7
  23. 3 4
  24. 1 2
  25. 1 8
  26. 1 5
  27. 2 7
  28. 2 6