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.

48 lines
833 B

4 weeks ago
  1. /* edge.dat */
  2. /***********************************************************************
  3. * Web Paint-by-Number Puzzle #23 from <www.webpbn.com>.
  4. * Copyright (C) 2004 by Jan Wolter. Used by permission.
  5. *
  6. * Nonrepresentational Test Pattern
  7. *
  8. * created by Jan Wolter
  9. * Apr 5, 2004
  10. *
  11. * Encoded in GNU MathProg by Andrew Makhorin <mao@gnu.org>.
  12. ***********************************************************************/
  13. data;
  14. param m := 11;
  15. param n := 10;
  16. param row : 1 :=
  17. 1 1
  18. 2 3
  19. 3 1
  20. 4 2
  21. 5 1
  22. 6 3
  23. 7 3
  24. 8 1
  25. 9 2
  26. 10 2
  27. 11 4
  28. ;
  29. param col : 1 2 :=
  30. 1 1 .
  31. 2 3 .
  32. 3 1 .
  33. 4 2 2
  34. 5 2 .
  35. 6 4 .
  36. 7 1 .
  37. 8 3 .
  38. 9 3 .
  39. 10 1 .
  40. ;
  41. end;