lemon-project-template-glpk
comparison deps/glpk/examples/pbn/edge.dat @ 9:33de93886c88
Import GLPK 4.47
author | Alpar Juttner <alpar@cs.elte.hu> |
---|---|
date | Sun, 06 Nov 2011 20:59:10 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:02e66bc6d61c |
---|---|
1 /* edge.dat */ | |
2 | |
3 /*********************************************************************** | |
4 * Web Paint-by-Number Puzzle #23 from <www.webpbn.com>. | |
5 * Copyright (C) 2004 by Jan Wolter. Used by permission. | |
6 * | |
7 * Nonrepresentational Test Pattern | |
8 * | |
9 * created by Jan Wolter | |
10 * Apr 5, 2004 | |
11 * | |
12 * Encoded in GNU MathProg by Andrew Makhorin <mao@gnu.org>. | |
13 ***********************************************************************/ | |
14 | |
15 data; | |
16 | |
17 param m := 11; | |
18 | |
19 param n := 10; | |
20 | |
21 param row : 1 := | |
22 1 1 | |
23 2 3 | |
24 3 1 | |
25 4 2 | |
26 5 1 | |
27 6 3 | |
28 7 3 | |
29 8 1 | |
30 9 2 | |
31 10 2 | |
32 11 4 | |
33 ; | |
34 | |
35 param col : 1 2 := | |
36 1 1 . | |
37 2 3 . | |
38 3 1 . | |
39 4 2 2 | |
40 5 2 . | |
41 6 4 . | |
42 7 1 . | |
43 8 3 . | |
44 9 3 . | |
45 10 1 . | |
46 ; | |
47 | |
48 end; |