The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

30 lines
263 B

4 weeks ago
  1. c sample.clq
  2. c
  3. c This is an example of the Maximum Weight Clique
  4. c Problem in DIMACS clique/coloring format.
  5. c
  6. p edge 8 16
  7. n 1 3
  8. n 2 4
  9. n 3 8
  10. n 5 5
  11. n 6 2
  12. n 8 3
  13. e 1 4
  14. e 1 5
  15. e 1 6
  16. e 1 8
  17. e 2 3
  18. e 2 6
  19. e 2 7
  20. e 2 8
  21. e 3 4
  22. e 3 6
  23. e 3 7
  24. e 4 5
  25. e 4 8
  26. e 5 7
  27. e 5 8
  28. e 6 7
  29. c
  30. c eof