COIN-OR::LEMON - Graph Library

source: lemon-project-template-glpk/deps/glpk/examples/pbn/9dom.dat @ 9:33de93886c88

subpack-glpk
Last change on this file since 9:33de93886c88 was 9:33de93886c88, checked in by Alpar Juttner <alpar@…>, 12 years ago

Import GLPK 4.47

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