-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlpx.h
565 lines (432 loc) · 18 KB
/
lpx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
/* lpx.h (old GLPK API) */
/* Written by Andrew Makhorin <mao@gnu.org>, August 2013. */
#ifndef LPX_H
#define LPX_H
#include <glpk.h>
#ifdef __cplusplus
extern "C" {
#endif
#define LPX glp_prob
/* problem class: */
#define LPX_LP 100 /* linear programming (LP) */
#define LPX_MIP 101 /* mixed integer programming (MIP) */
/* type of auxiliary/structural variable: */
#define LPX_FR 110 /* free variable */
#define LPX_LO 111 /* variable with lower bound */
#define LPX_UP 112 /* variable with upper bound */
#define LPX_DB 113 /* double-bounded variable */
#define LPX_FX 114 /* fixed variable */
/* optimization direction flag: */
#define LPX_MIN 120 /* minimization */
#define LPX_MAX 121 /* maximization */
/* status of primal basic solution: */
#define LPX_P_UNDEF 132 /* primal solution is undefined */
#define LPX_P_FEAS 133 /* solution is primal feasible */
#define LPX_P_INFEAS 134 /* solution is primal infeasible */
#define LPX_P_NOFEAS 135 /* no primal feasible solution exists */
/* status of dual basic solution: */
#define LPX_D_UNDEF 136 /* dual solution is undefined */
#define LPX_D_FEAS 137 /* solution is dual feasible */
#define LPX_D_INFEAS 138 /* solution is dual infeasible */
#define LPX_D_NOFEAS 139 /* no dual feasible solution exists */
/* status of auxiliary/structural variable: */
#define LPX_BS 140 /* basic variable */
#define LPX_NL 141 /* non-basic variable on lower bound */
#define LPX_NU 142 /* non-basic variable on upper bound */
#define LPX_NF 143 /* non-basic free variable */
#define LPX_NS 144 /* non-basic fixed variable */
/* status of interior-point solution: */
#define LPX_T_UNDEF 150 /* interior solution is undefined */
#define LPX_T_OPT 151 /* interior solution is optimal */
/* kind of structural variable: */
#define LPX_CV 160 /* continuous variable */
#define LPX_IV 161 /* integer variable */
/* status of integer solution: */
#define LPX_I_UNDEF 170 /* integer solution is undefined */
#define LPX_I_OPT 171 /* integer solution is optimal */
#define LPX_I_FEAS 172 /* integer solution is feasible */
#define LPX_I_NOFEAS 173 /* no integer solution exists */
/* status codes reported by the routine lpx_get_status: */
#define LPX_OPT 180 /* optimal */
#define LPX_FEAS 181 /* feasible */
#define LPX_INFEAS 182 /* infeasible */
#define LPX_NOFEAS 183 /* no feasible */
#define LPX_UNBND 184 /* unbounded */
#define LPX_UNDEF 185 /* undefined */
/* exit codes returned by solver routines: */
#define LPX_E_OK 200 /* success */
#define LPX_E_EMPTY 201 /* empty problem */
#define LPX_E_BADB 202 /* invalid initial basis */
#define LPX_E_INFEAS 203 /* infeasible initial solution */
#define LPX_E_FAULT 204 /* unable to start the search */
#define LPX_E_OBJLL 205 /* objective lower limit reached */
#define LPX_E_OBJUL 206 /* objective upper limit reached */
#define LPX_E_ITLIM 207 /* iterations limit exhausted */
#define LPX_E_TMLIM 208 /* time limit exhausted */
#define LPX_E_NOFEAS 209 /* no feasible solution */
#define LPX_E_INSTAB 210 /* numerical instability */
#define LPX_E_SING 211 /* problems with basis matrix */
#define LPX_E_NOCONV 212 /* no convergence (interior) */
#define LPX_E_NOPFS 213 /* no primal feas. sol. (LP presolver) */
#define LPX_E_NODFS 214 /* no dual feas. sol. (LP presolver) */
#define LPX_E_MIPGAP 215 /* relative mip gap tolerance reached */
/* control parameter identifiers: */
#define LPX_K_MSGLEV 300 /* lp->msg_lev */
#define LPX_K_SCALE 301 /* lp->scale */
#define LPX_K_DUAL 302 /* lp->dual */
#define LPX_K_PRICE 303 /* lp->price */
#define LPX_K_RELAX 304 /* lp->relax */
#define LPX_K_TOLBND 305 /* lp->tol_bnd */
#define LPX_K_TOLDJ 306 /* lp->tol_dj */
#define LPX_K_TOLPIV 307 /* lp->tol_piv */
#define LPX_K_ROUND 308 /* lp->round */
#define LPX_K_OBJLL 309 /* lp->obj_ll */
#define LPX_K_OBJUL 310 /* lp->obj_ul */
#define LPX_K_ITLIM 311 /* lp->it_lim */
#define LPX_K_ITCNT 312 /* lp->it_cnt */
#define LPX_K_TMLIM 313 /* lp->tm_lim */
#define LPX_K_OUTFRQ 314 /* lp->out_frq */
#define LPX_K_OUTDLY 315 /* lp->out_dly */
#define LPX_K_BRANCH 316 /* lp->branch */
#define LPX_K_BTRACK 317 /* lp->btrack */
#define LPX_K_TOLINT 318 /* lp->tol_int */
#define LPX_K_TOLOBJ 319 /* lp->tol_obj */
#define LPX_K_MPSINFO 320 /* lp->mps_info */
#define LPX_K_MPSOBJ 321 /* lp->mps_obj */
#define LPX_K_MPSORIG 322 /* lp->mps_orig */
#define LPX_K_MPSWIDE 323 /* lp->mps_wide */
#define LPX_K_MPSFREE 324 /* lp->mps_free */
#define LPX_K_MPSSKIP 325 /* lp->mps_skip */
#define LPX_K_LPTORIG 326 /* lp->lpt_orig */
#define LPX_K_PRESOL 327 /* lp->presol */
#define LPX_K_BINARIZE 328 /* lp->binarize */
#define LPX_K_USECUTS 329 /* lp->use_cuts */
#define LPX_K_BFTYPE 330 /* lp->bfcp->type */
#define LPX_K_MIPGAP 331 /* lp->mip_gap */
#define LPX_C_COVER 0x01 /* mixed cover cuts */
#define LPX_C_CLIQUE 0x02 /* clique cuts */
#define LPX_C_GOMORY 0x04 /* Gomory's mixed integer cuts */
#define LPX_C_MIR 0x08 /* mixed integer rounding cuts */
#define LPX_C_ALL 0xFF /* all cuts */
typedef struct
{ /* this structure contains results reported by the routines which
checks Karush-Kuhn-Tucker conditions (for details see comments
to those routines) */
/*--------------------------------------------------------------*/
/* xR - A * xS = 0 (KKT.PE) */
double pe_ae_max;
/* largest absolute error */
int pe_ae_row;
/* number of row with largest absolute error */
double pe_re_max;
/* largest relative error */
int pe_re_row;
/* number of row with largest relative error */
int pe_quality;
/* quality of primal solution:
'H' - high
'M' - medium
'L' - low
'?' - primal solution is wrong */
/*--------------------------------------------------------------*/
/* l[k] <= x[k] <= u[k] (KKT.PB) */
double pb_ae_max;
/* largest absolute error */
int pb_ae_ind;
/* number of variable with largest absolute error */
double pb_re_max;
/* largest relative error */
int pb_re_ind;
/* number of variable with largest relative error */
int pb_quality;
/* quality of primal feasibility:
'H' - high
'M' - medium
'L' - low
'?' - primal solution is infeasible */
/*--------------------------------------------------------------*/
/* A' * (dR - cR) + (dS - cS) = 0 (KKT.DE) */
double de_ae_max;
/* largest absolute error */
int de_ae_col;
/* number of column with largest absolute error */
double de_re_max;
/* largest relative error */
int de_re_col;
/* number of column with largest relative error */
int de_quality;
/* quality of dual solution:
'H' - high
'M' - medium
'L' - low
'?' - dual solution is wrong */
/*--------------------------------------------------------------*/
/* d[k] >= 0 or d[k] <= 0 (KKT.DB) */
double db_ae_max;
/* largest absolute error */
int db_ae_ind;
/* number of variable with largest absolute error */
double db_re_max;
/* largest relative error */
int db_re_ind;
/* number of variable with largest relative error */
int db_quality;
/* quality of dual feasibility:
'H' - high
'M' - medium
'L' - low
'?' - dual solution is infeasible */
/*--------------------------------------------------------------*/
/* (x[k] - bound of x[k]) * d[k] = 0 (KKT.CS) */
double cs_ae_max;
/* largest absolute error */
int cs_ae_ind;
/* number of variable with largest absolute error */
double cs_re_max;
/* largest relative error */
int cs_re_ind;
/* number of variable with largest relative error */
int cs_quality;
/* quality of complementary slackness:
'H' - high
'M' - medium
'L' - low
'?' - primal and dual solutions are not complementary */
} LPXKKT;
LPX *lpx_create_prob(void);
/* create problem object */
void lpx_set_prob_name(LPX *lp, const char *name);
/* assign (change) problem name */
void lpx_set_obj_name(LPX *lp, const char *name);
/* assign (change) objective function name */
void lpx_set_obj_dir(LPX *lp, int dir);
/* set (change) optimization direction flag */
int lpx_add_rows(LPX *lp, int nrs);
/* add new rows to problem object */
int lpx_add_cols(LPX *lp, int ncs);
/* add new columns to problem object */
void lpx_set_row_name(LPX *lp, int i, const char *name);
/* assign (change) row name */
void lpx_set_col_name(LPX *lp, int j, const char *name);
/* assign (change) column name */
void lpx_set_row_bnds(LPX *lp, int i, int type, double lb, double ub);
/* set (change) row bounds */
void lpx_set_col_bnds(LPX *lp, int j, int type, double lb, double ub);
/* set (change) column bounds */
void lpx_set_obj_coef(glp_prob *lp, int j, double coef);
/* set (change) obj. coefficient or constant term */
void lpx_set_mat_row(LPX *lp, int i, int len, const int ind[],
const double val[]);
/* set (replace) row of the constraint matrix */
void lpx_set_mat_col(LPX *lp, int j, int len, const int ind[],
const double val[]);
/* set (replace) column of the constraint matrix */
void lpx_load_matrix(LPX *lp, int ne, const int ia[], const int ja[],
const double ar[]);
/* load (replace) the whole constraint matrix */
void lpx_del_rows(LPX *lp, int nrs, const int num[]);
/* delete specified rows from problem object */
void lpx_del_cols(LPX *lp, int ncs, const int num[]);
/* delete specified columns from problem object */
void lpx_delete_prob(LPX *lp);
/* delete problem object */
const char *lpx_get_prob_name(LPX *lp);
/* retrieve problem name */
const char *lpx_get_obj_name(LPX *lp);
/* retrieve objective function name */
int lpx_get_obj_dir(LPX *lp);
/* retrieve optimization direction flag */
int lpx_get_num_rows(LPX *lp);
/* retrieve number of rows */
int lpx_get_num_cols(LPX *lp);
/* retrieve number of columns */
const char *lpx_get_row_name(LPX *lp, int i);
/* retrieve row name */
const char *lpx_get_col_name(LPX *lp, int j);
/* retrieve column name */
int lpx_get_row_type(LPX *lp, int i);
/* retrieve row type */
double lpx_get_row_lb(LPX *lp, int i);
/* retrieve row lower bound */
double lpx_get_row_ub(LPX *lp, int i);
/* retrieve row upper bound */
void lpx_get_row_bnds(LPX *lp, int i, int *typx, double *lb,
double *ub);
/* retrieve row bounds */
int lpx_get_col_type(LPX *lp, int j);
/* retrieve column type */
double lpx_get_col_lb(LPX *lp, int j);
/* retrieve column lower bound */
double lpx_get_col_ub(LPX *lp, int j);
/* retrieve column upper bound */
void lpx_get_col_bnds(LPX *lp, int j, int *typx, double *lb,
double *ub);
/* retrieve column bounds */
double lpx_get_obj_coef(LPX *lp, int j);
/* retrieve obj. coefficient or constant term */
int lpx_get_num_nz(LPX *lp);
/* retrieve number of constraint coefficients */
int lpx_get_mat_row(LPX *lp, int i, int ind[], double val[]);
/* retrieve row of the constraint matrix */
int lpx_get_mat_col(LPX *lp, int j, int ind[], double val[]);
/* retrieve column of the constraint matrix */
void lpx_create_index(LPX *lp);
/* create the name index */
int lpx_find_row(LPX *lp, const char *name);
/* find row by its name */
int lpx_find_col(LPX *lp, const char *name);
/* find column by its name */
void lpx_delete_index(LPX *lp);
/* delete the name index */
void lpx_scale_prob(LPX *lp);
/* scale problem data */
void lpx_unscale_prob(LPX *lp);
/* unscale problem data */
void lpx_set_row_stat(LPX *lp, int i, int stat);
/* set (change) row status */
void lpx_set_col_stat(LPX *lp, int j, int stat);
/* set (change) column status */
void lpx_std_basis(LPX *lp);
/* construct standard initial LP basis */
void lpx_adv_basis(LPX *lp);
/* construct advanced initial LP basis */
void lpx_cpx_basis(LPX *lp);
/* construct Bixby's initial LP basis */
int lpx_simplex(LPX *lp);
/* easy-to-use driver to the simplex method */
int lpx_exact(LPX *lp);
/* easy-to-use driver to the exact simplex method */
int lpx_get_status(LPX *lp);
/* retrieve generic status of basic solution */
int lpx_get_prim_stat(LPX *lp);
/* retrieve primal status of basic solution */
int lpx_get_dual_stat(LPX *lp);
/* retrieve dual status of basic solution */
double lpx_get_obj_val(LPX *lp);
/* retrieve objective value (basic solution) */
int lpx_get_row_stat(LPX *lp, int i);
/* retrieve row status (basic solution) */
double lpx_get_row_prim(LPX *lp, int i);
/* retrieve row primal value (basic solution) */
double lpx_get_row_dual(LPX *lp, int i);
/* retrieve row dual value (basic solution) */
void lpx_get_row_info(LPX *lp, int i, int *tagx, double *vx,
double *dx);
/* obtain row solution information */
int lpx_get_col_stat(LPX *lp, int j);
/* retrieve column status (basic solution) */
double lpx_get_col_prim(LPX *lp, int j);
/* retrieve column primal value (basic solution) */
double lpx_get_col_dual(glp_prob *lp, int j);
/* retrieve column dual value (basic solution) */
void lpx_get_col_info(LPX *lp, int j, int *tagx, double *vx,
double *dx);
/* obtain column solution information (obsolete) */
int lpx_get_ray_info(LPX *lp);
/* determine what causes primal unboundness */
void lpx_check_kkt(LPX *lp, int scaled, LPXKKT *kkt);
/* check Karush-Kuhn-Tucker conditions */
int lpx_warm_up(LPX *lp);
/* "warm up" LP basis */
int lpx_eval_tab_row(LPX *lp, int k, int ind[], double val[]);
/* compute row of the simplex table */
int lpx_eval_tab_col(LPX *lp, int k, int ind[], double val[]);
/* compute column of the simplex table */
int lpx_transform_row(LPX *lp, int len, int ind[], double val[]);
/* transform explicitly specified row */
int lpx_transform_col(LPX *lp, int len, int ind[], double val[]);
/* transform explicitly specified column */
int lpx_prim_ratio_test(LPX *lp, int len, const int ind[],
const double val[], int how, double tol);
/* perform primal ratio test */
int lpx_dual_ratio_test(LPX *lp, int len, const int ind[],
const double val[], int how, double tol);
/* perform dual ratio test */
int lpx_interior(LPX *lp);
/* easy-to-use driver to the interior point method */
int lpx_ipt_status(LPX *lp);
/* retrieve status of interior-point solution */
double lpx_ipt_obj_val(LPX *lp);
/* retrieve objective value (interior point) */
double lpx_ipt_row_prim(LPX *lp, int i);
/* retrieve row primal value (interior point) */
double lpx_ipt_row_dual(LPX *lp, int i);
/* retrieve row dual value (interior point) */
double lpx_ipt_col_prim(LPX *lp, int j);
/* retrieve column primal value (interior point) */
double lpx_ipt_col_dual(LPX *lp, int j);
/* retrieve column dual value (interior point) */
void lpx_set_class(LPX *lp, int klass);
/* set problem class */
int lpx_get_class(LPX *lp);
/* determine problem klass */
void lpx_set_col_kind(LPX *lp, int j, int kind);
/* set (change) column kind */
int lpx_get_col_kind(LPX *lp, int j);
/* retrieve column kind */
int lpx_get_num_int(LPX *lp);
/* retrieve number of integer columns */
int lpx_get_num_bin(LPX *lp);
/* retrieve number of binary columns */
int lpx_integer(LPX *lp);
/* easy-to-use driver to the branch-and-bound method */
int lpx_intopt(LPX *lp);
/* easy-to-use driver to the branch-and-bound method */
int lpx_mip_status(LPX *lp);
/* retrieve status of MIP solution */
double lpx_mip_obj_val(LPX *lp);
/* retrieve objective value (MIP solution) */
double lpx_mip_row_val(LPX *lp, int i);
/* retrieve row value (MIP solution) */
double lpx_mip_col_val(LPX *lp, int j);
/* retrieve column value (MIP solution) */
void lpx_check_int(LPX *lp, LPXKKT *kkt);
/* check integer feasibility conditions */
void lpx_reset_parms(LPX *lp);
/* reset control parameters to default values */
void lpx_set_int_parm(LPX *lp, int parm, int val);
/* set (change) integer control parameter */
int lpx_get_int_parm(LPX *lp, int parm);
/* query integer control parameter */
void lpx_set_real_parm(LPX *lp, int parm, double val);
/* set (change) real control parameter */
double lpx_get_real_parm(LPX *lp, int parm);
/* query real control parameter */
LPX *lpx_read_mps(const char *fname);
/* read problem data in fixed MPS format */
int lpx_write_mps(LPX *lp, const char *fname);
/* write problem data in fixed MPS format */
int lpx_read_bas(LPX *lp, const char *fname);
/* read LP basis in fixed MPS format */
int lpx_write_bas(LPX *lp, const char *fname);
/* write LP basis in fixed MPS format */
LPX *lpx_read_freemps(const char *fname);
/* read problem data in free MPS format */
int lpx_write_freemps(LPX *lp, const char *fname);
/* write problem data in free MPS format */
LPX *lpx_read_cpxlp(const char *fname);
/* read problem data in CPLEX LP format */
int lpx_write_cpxlp(LPX *lp, const char *fname);
/* write problem data in CPLEX LP format */
LPX *lpx_read_model(const char *model, const char *data,
const char *output);
/* read LP/MIP model written in GNU MathProg language */
int lpx_print_prob(LPX *lp, const char *fname);
/* write problem data in plain text format */
int lpx_print_sol(LPX *lp, const char *fname);
/* write LP problem solution in printable format */
int lpx_print_sens_bnds(LPX *lp, const char *fname);
/* write bounds sensitivity information */
int lpx_print_ips(LPX *lp, const char *fname);
/* write interior point solution in printable format */
int lpx_print_mip(LPX *lp, const char *fname);
/* write MIP problem solution in printable format */
int lpx_is_b_avail(LPX *lp);
/* check if LP basis is available */
//int lpx_main(int argc, const char *argv[]);
/* stand-alone LP/MIP solver */
#ifdef __cplusplus
}
#endif
#endif
/* eof */