COIN-OR::LEMON - Graph Library

source: lemon-project-template-glpk/deps/glpk/examples/pbn/edge.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: 833 bytes
Line 
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
15data;
16
17param m := 11;
18
19param n := 10;
20
21param 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
35param 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
48end;
Note: See TracBrowser for help on using the repository browser.