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.

65 lines
1.1 KiB

4 weeks ago
  1. /* 9dom.dat */
  2. /***********************************************************************
  3. * Web Paint-by-Number Puzzle #8098 from <www.webpbn.com>.
  4. * Copyright (C) 2010 by Josh Greifer. Used by permission.
  5. *
  6. * Domino Logic III (Abstract pattern)
  7. *
  8. * created by Josh Greifer
  9. * Apr 5, 2010
  10. *
  11. * Encoded in GNU MathProg by Andrew Makhorin <mao@gnu.org>.
  12. ***********************************************************************/
  13. data;
  14. param m := 19;
  15. param n := 19;
  16. param row : 1 2 :=
  17. 1 3 .
  18. 2 1 .
  19. 3 3 1
  20. 4 1 .
  21. 5 3 1
  22. 6 1 .
  23. 7 3 1
  24. 8 1 .
  25. 9 3 1
  26. 10 1 .
  27. 11 3 1
  28. 12 1 .
  29. 13 3 1
  30. 14 1 .
  31. 15 3 1
  32. 16 1 .
  33. 17 3 1
  34. 18 1 .
  35. 19 1 .
  36. ;
  37. param col : 1 2 :=
  38. 1 1 .
  39. 2 1 .
  40. 3 1 3
  41. 4 1 .
  42. 5 1 3
  43. 6 1 .
  44. 7 1 3
  45. 8 1 .
  46. 9 1 3
  47. 10 1 .
  48. 11 1 3
  49. 12 1 .
  50. 13 1 3
  51. 14 1 .
  52. 15 1 3
  53. 16 1 .
  54. 17 1 3
  55. 18 1 .
  56. 19 3 .
  57. ;
  58. end;