summaryrefslogtreecommitdiff
path: root/glpk-5.0/examples/sql/sudoku_odbc.mod
diff options
context:
space:
mode:
authorPasha <pasha@member.fsf.org>2023-01-27 00:54:07 +0000
committerPasha <pasha@member.fsf.org>2023-01-27 00:54:07 +0000
commitef800d4ffafdbde7d7a172ad73bd984b1695c138 (patch)
tree920cc189130f1e98f252283fce94851443641a6d /glpk-5.0/examples/sql/sudoku_odbc.mod
parentec4ae3c2b5cb0e83fb667f14f832ea94f68ef075 (diff)
downloadoneapi-master.tar.gz
oneapi-master.tar.bz2
simplex-glpk with modified glpk for fpgaHEADmaster
Diffstat (limited to 'glpk-5.0/examples/sql/sudoku_odbc.mod')
-rw-r--r--glpk-5.0/examples/sql/sudoku_odbc.mod111
1 files changed, 111 insertions, 0 deletions
diff --git a/glpk-5.0/examples/sql/sudoku_odbc.mod b/glpk-5.0/examples/sql/sudoku_odbc.mod
new file mode 100644
index 0000000..9ffa3ab
--- /dev/null
+++ b/glpk-5.0/examples/sql/sudoku_odbc.mod
@@ -0,0 +1,111 @@
+/* SUDOKU, Number Placement Puzzle */
+
+/* Written in GNU MathProg by Andrew Makhorin <mao@mai2.rcnet.ru> */
+
+/* This example shows how to use the table statement.
+ The sudoku to be solves is read from file sudoku_in.csv.
+ The solution is written to sudoku_out.csv.
+ The file format is CSV as defined in
+ RFC 4180 - Common Format and MIME Type for
+ Comma-Separated Values (CSV) Files */
+
+/* Sudoku, also known as Number Place, is a logic-based placement
+ puzzle. The aim of the canonical puzzle is to enter a numerical
+ digit from 1 through 9 in each cell of a 9x9 grid made up of 3x3
+ subgrids (called "regions"), starting with various digits given in
+ some cells (the "givens"). Each row, column, and region must contain
+ only one instance of each numeral.
+
+ Example:
+
+ +-------+-------+-------+
+ | 5 3 . | . 7 . | . . . |
+ | 6 . . | 1 9 5 | . . . |
+ | . 9 8 | . . . | . 6 . |
+ +-------+-------+-------+
+ | 8 . . | . 6 . | . . 3 |
+ | 4 . . | 8 . 3 | . . 1 |
+ | 7 . . | . 2 . | . . 6 |
+ +-------+-------+-------+
+ | . 6 . | . . . | 2 8 . |
+ | . . . | 4 1 9 | . . 5 |
+ | . . . | . 8 . | . 7 9 |
+ +-------+-------+-------+
+
+ (From Wikipedia, the free encyclopedia.) */
+set fields dimen 2;
+
+param id;
+
+param givens{1..9, 1..9}, integer, >= 0, <= 9, default 0;
+/* the "givens" */
+
+table ti IN 'iODBC'
+ 'DSN=glpk;UID=glpk;PWD=gnu'
+ 'SELECT * FROM sudoku'
+ 'WHERE ID = ' & id :
+ fields <- [COL, LIN], givens ~ VAL;
+
+var x{i in 1..9, j in 1..9, k in 1..9}, binary;
+/* x[i,j,k] = 1 means cell [i,j] is assigned number k */
+
+s.t. fa{i in 1..9, j in 1..9, k in 1..9: givens[i,j] != 0}:
+ x[i,j,k] = (if givens[i,j] = k then 1 else 0);
+/* assign pre-defined numbers using the "givens" */
+
+s.t. fb{i in 1..9, j in 1..9}: sum{k in 1..9} x[i,j,k] = 1;
+/* each cell must be assigned exactly one number */
+
+s.t. fc{i in 1..9, k in 1..9}: sum{j in 1..9} x[i,j,k] = 1;
+/* cells in the same row must be assigned distinct numbers */
+
+s.t. fd{j in 1..9, k in 1..9}: sum{i in 1..9} x[i,j,k] = 1;
+/* cells in the same column must be assigned distinct numbers */
+
+s.t. fe{I in 1..9 by 3, J in 1..9 by 3, k in 1..9}:
+ sum{i in I..I+2, j in J..J+2} x[i,j,k] = 1;
+/* cells in the same region must be assigned distinct numbers */
+
+/* there is no need for an objective function here */
+
+
+solve;
+
+table ta {(i, j) in {i1 in 1..9} cross {i2 in 1..9}} OUT
+ 'iODBC' 'DSN=glpk;UID=glpk;PWD=gnu'
+ 'DELETE FROM sudoku_solution'
+ 'WHERE ID = ' & id & ';'
+ 'INSERT INTO sudoku_solution'
+ '(ID, COL, LIN, VAL)'
+ 'VALUES(?, ?, ?, ?);' :
+ id ~ ID, i ~ COL, j ~ LIN, (sum{k in 1..9} x[i,j,k] * k) ~ VAL;
+
+printf "\nSudoku to be solved\n";
+for {i in 1..9}
+{ for {0..0: i = 1 or i = 4 or i = 7}
+ printf " +-------+-------+-------+\n";
+ for {j in 1..9}
+ { for {0..0: j = 1 or j = 4 or j = 7} printf(" |");
+ printf " %d", givens[i,j];
+ for {0..0: j = 9} printf(" |\n");
+ }
+ for {0..0: i = 9}
+ printf " +-------+-------+-------+\n";
+ }
+printf "\nSolution\n";
+for {i in 1..9}
+{ for {0..0: i = 1 or i = 4 or i = 7}
+ printf " +-------+-------+-------+\n";
+ for {j in 1..9}
+ { for {0..0: j = 1 or j = 4 or j = 7} printf(" |");
+ printf " %d", sum{k in 1..9} x[i,j,k] * k;
+ for {0..0: j = 9} printf(" |\n");
+ }
+ for {0..0: i = 9}
+ printf " +-------+-------+-------+\n";
+}
+
+data;
+
+param id := 1;
+end;