You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2747 lines
104 KiB

  1. Thu Feb 13 12:00:00 2014 Andrew Makhorin <mao@gnu.org>
  2. * GLPK 4.53 (37:0:1) has been released.
  3. * src/glpmps.c (glp_read_mps)
  4. The code was changed to remove free rows at the end.
  5. * src/glpcpx.c (glp_read_lp)
  6. A bug was fixed (explicit bounds for binaries not set). Thanks
  7. to Gabriel Hackebeil <gabehack@gmail.com> for bug report.
  8. * src/glpenv07.c (z_fgetc)
  9. A bug was fixed (Z_STREAM_END -> Z_OK). Thanks to Achim Gaedke
  10. <achim.gaedke@gmail.com> for bug report.
  11. * src/glpenv07.c
  12. Replaced by src/env/stream.c.
  13. * src/glpenv08.c
  14. Replaced by src/env/dlsup.c.
  15. * src/bflib/ifu.h, src/bflib/ifu.c
  16. Re-implemented.
  17. * src/glpscf.h, src/glpscf.c
  18. Replaced by IFU.
  19. * src/glplpf.h, src/glplpf.c
  20. Changed due to IFU.
  21. * src/glpbfd.c
  22. Changed due to LPF.
  23. * src/glpapi06.c
  24. Two API routines glp_get_it_cnt and glp_set_it_cnt were added.
  25. Thanks to Joey Rios <joeylrios@hotmail.com> for suggestion.
  26. * src/glplpx.h, src/glplpx01.c, src/glplpx02.c, src/glplpx03.c
  27. All obsolete API routines were completely removed.
  28. * examples/oldapi/lpx.h, examples/oldapi/lpx.c
  29. A set of routines that simulate the old GLPK API (as defined
  30. in 4.48) were added. Thanks to Jan Engelhardt <jengelh@inai.de>
  31. for suggestion.
  32. * src/zlib/*
  33. zlib 1.2.7 was downgraded to zlib 1.2.5 (from glpk 4.50) due to
  34. bugs detected in zlib 1.2.7 on some 64-bit platforms. Thanks to
  35. Carlo Baldassi <carlobaldassi@gmail.com> for bug report.
  36. * src/glpsql.c
  37. Alignment bug was fixed. Thanks to Xypron <xypron.glpk@gmx.de>
  38. for suggestion.
  39. * src/glpsql.c
  40. #include <my_global.h> and #include <my_sys.h> were commented
  41. out to fix a namespace bug on compiling with MariaDB. Thanks to
  42. Xypron <xypron.glpk@gmx.de> for suggestion.
  43. Sun Jul 28 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  44. * GLPK 4.52.1 (36:1:0) has been released.
  45. * src/Makefile.am
  46. Version information bug was fixed. Thanks to Sebastien Villemot
  47. <sebastien@debian.org> for bug report.
  48. * src/proxy/proxy.c
  49. A minor bug (incorrect use of glp_term_out) was fixed.
  50. * src/glpios03.c
  51. The simple rounding heuristic routine was changed to check only
  52. global constraints.
  53. * src/glpcpx.c
  54. The code was changed to issue the warning message 'lower/upper
  55. bound redefined' only once.
  56. Thu Jul 18 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  57. * GLPK 4.52 (36:0:1) has been released.
  58. * src/misc/wclique1.h, src/misc/wclique1.c
  59. Greedy heuristic to find maximum weight clique was implemented.
  60. * src/cglib/cfg.h, src/cglib/cfg.c, src/cglib/cfg1.c
  61. Conflict graph routines (used to generate clique cuts) were
  62. implemented.
  63. * src/glpios08.c
  64. New version of the clique cut generator was implemented. Now it
  65. is able to efficiently process very large and/or dense conflict
  66. graphs. Old rudimentary version was removed from the package.
  67. * examples/misp1.dat, examples/misp2.dat
  68. Two data files for the maximum independent set problem (MISP)
  69. were added to illustrate efficiency of using the clique cuts.
  70. * src/glpios03.c
  71. Simple rounding heuristic applied for every node subproblem was
  72. implemented.
  73. * proxy/proxy.c
  74. Some bugs were fixed in the proximity search heuristic routine.
  75. Thanks to Giorgio Sartor <0gioker0@gmail.com>.
  76. * src/glpapi21.c
  77. New command-line option '--proxy [nnn]' was added to glpsol to
  78. enable using the proximity search heuristic.
  79. * src/glpspx02.c
  80. A feature was added to switch to the primal simplex in case of
  81. stalling due to dual degeneracy (for GLP_DUALP only).
  82. * src/glpmps.c
  83. A bug (incorrect processing of LI column indicator) was fixed
  84. in the mps format reading routine. Thanks to Charles Brixko for
  85. bug report.
  86. Wed Jun 19 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  87. * GLPK 4.51 (36:0:0) has been released.
  88. * src/bflib/sgf.c, src/bflib/sgf.h
  89. Singleton and dense phases of sparse Gaussian factorizer were
  90. implemented.
  91. * src/bflib/lufint.c, src/bflib/lufint.h
  92. Interface routines to LU-factorization were added.
  93. * src/bflib/fhvint.c, src/bflib/fhvint.h
  94. Interface routines to FHV-factorization were changed to use
  95. lufint.c routines.
  96. * src/glplpf.c, src/glplpf.h
  97. Routines implementing Schur-complement version of the LP basis
  98. factorization were changed to use lufint.c routines.
  99. * src/glpbfd.c, src/glpbfd.h
  100. Interface routines to the LP basis factorization were changed
  101. due to changes in glplpf.c routines.
  102. * src/glpluf.c, src/glpluf.c
  103. Old version of LU-factorization was removed from the package.
  104. (This old version was used for 10 years since 3.0.6.)
  105. * src/misc/triang.c, src/misc/triang.h
  106. Routine to find maximal triangular part of rectangular matrix
  107. was added.
  108. * src/glpini01.c
  109. The API routine glp_adv_basis that constructs advanced initial
  110. LP basis was replaced by an improved version, which (unlike the
  111. old version) takes into account numerical values of constraint
  112. coefficients.
  113. * src/proxy/*
  114. Routines that implement the proximity search heuristic for MIP
  115. were added. Thanks to Giorgio Sartor <0gioker0@gmail.com> for
  116. contribution.
  117. * src/glpk.h
  118. iocp.ps_heur was added to enable/disable proxy heuristic.
  119. * glpsol
  120. --proxy command-line option was added.
  121. * src/zlib/*.*
  122. zlib general purpose compression library, version 1.2.7,
  123. was ANSIfied and modified according to GLPK requirements and
  124. included in the distribution as an external software module.
  125. This version replaced the old one (1.2.5). For details please
  126. see src/zlib/README.
  127. * src/glpk.h, src/env/time.c
  128. The API routine glp_time was changed to return double rather
  129. than glp_long.
  130. * src/glplib02.c
  131. Routines that implement glp_long type (64-bit arithmetic) were
  132. removed from the package.
  133. * src/glpk.h, src/env/alloc.c
  134. New API routine glp_alloc was added. It makes obsolete two
  135. API routines glp_malloc and glp_calloc which were replaced by
  136. macros to use glp_alloc (hence 36:0:0).
  137. * src/glpios10.c
  138. A bug was fixed that caused numerical instability in the FPUMP
  139. heuristic (the bug was introduced in glpk 4.40).
  140. Fri May 24 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  141. * GLPK 4.50 (35:0:0) has been released
  142. * src/Makefile.am
  143. Though API was not changed since 4.49, symbols _glp_lpx_* were
  144. removed from the export list, hence 35:0:0.
  145. * src/glpfhv.h, src/glpfhv.c
  146. Old routines for FHV-factorization were removed.
  147. * src/bflib/*.h, src/bflib/*.c
  148. New version of basis factorization routines, including routines
  149. for FHV-factorization, were added.
  150. * src/glpbfd.c
  151. LP basis factorization driver was changed according to the new
  152. routines for FHV-factorization.
  153. * doc/glpk.tex
  154. Some clarifications about using the name index routines were
  155. added. Thanks to Xypron <xypron.glpk@gmx.de> for suggestion.
  156. * doc/gmpl.tex
  157. Some typos were corrected.
  158. Thanks to Jeffrey Kantor <Kantor.1@nd.edu> for report.
  159. * src/glprlx.c
  160. A serious bug was *tentatively* fixed. This bug is inherited
  161. from the original Fortran version of the RELAX-IV code.
  162. Unfortunately, the code is very intricate, so this bug is still
  163. under investigation. Thanks to Sylvain Fournier for bug report.
  164. RELAX-IV bug details
  165. --------------------
  166. In the original RELAX-IV code there are four similar fragments
  167. in subroutines ascnt1 and ascnt2 like this:
  168. C
  169. C DECREASE THE PRICES OF THE SCANNED NODES BY DELPRC.
  170. C ADJUST FLOW TO MAINTAIN COMPLEMENTARY SLACKNESS WITH
  171. C THE PRICES.
  172. C
  173. NB = 0
  174. DO 6 I=1,NSAVE
  175. . . .
  176. IF (RC(ARC).EQ.0) THEN
  177. DELX=DELX+U(ARC)
  178. NB = NB + 1
  179. PRDCSR(NB) = ARC
  180. END IF
  181. . . .
  182. On some instances the variable NB becomes greater than N (the
  183. number of nodes) that leads to indexing error, because the
  184. array PRDCSR is declared as array of N elements (more
  185. precisely, as array of MAXNN elements, however, NB becomes even
  186. much greater than MAXNN).
  187. Tue Apr 16 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  188. * GLPK 4.49 (34:0:0) has been released
  189. * glprlx.c, glprlx.h
  190. C version of the Fortran code RELAX-IV (relaxation method of
  191. Bertsekas and Tseng) was added.
  192. * glpapi17.c
  193. API routine glp_mincost_relax4, which is a driver to RELAX-IV
  194. code, was added and documented.
  195. * glpnet03.c
  196. API routine glp_netgen_prob (Klingman's standard network
  197. problems) was added and documented.
  198. * glpapi12.c
  199. A bug (wrong dual feasibility test) was fixed in API routine
  200. glp_warm_up. Thanks to David T. Price <dtprice@speakeasy.net>
  201. for bug report.
  202. * glpapi10.c
  203. Obsolete API routine lpx_check_kkt was replaced by API routine
  204. glp_check_kkt.
  205. * glpk.h
  206. All old API routines whose names begin with 'lpx_' were removed
  207. from API and no more available.
  208. * glpk.tex, graphs.tex
  209. These documents were essentially reformatted.
  210. Mon Jan 28 12:00:00 2013 Andrew Makhorin <mao@gnu.org>
  211. * GLPK 4.48 (33:0:0) has been released
  212. * src/glpmps.c
  213. A bug in glp_write_mps was fixed. Thanks to Raniere Gaia Costa
  214. da Silva for bug report.
  215. * glpk.h
  216. glp_prob declaration changed (now it is incomplete struct);
  217. glp_tree declaration changed (now it is incomplete struct);
  218. glp_tran declaration changed (now it is incomplete struct);
  219. glp_long declaration removed;
  220. glp_time declaration removed;
  221. glp_difftime removed from API;
  222. glp_data removed from API;
  223. glp_sdf_* removed from API;
  224. glp_mem_usage declaration changed (glp_long -> size_t);
  225. glp_realloc declaration added (not documented yet).
  226. * glpenv.h, glpenv05.c
  227. Dynamic memory allocation routines were reimplemented.
  228. * glpk.h, glpnet03.c
  229. Routine glp_netgen_prob was added (not documented yet).
  230. * configure.ac
  231. Check for gmp.h was added. Thanks to Heinrich Schuchardt for
  232. suggestion.
  233. * w32/glpk.def, w64/glpk.def
  234. Changes were made to export only API symbols.
  235. Fri Sep 09 12:00:00 2011 Andrew Makhorin <mao@gnu.org>
  236. * GLPK 4.47 (32:0:32) has been released
  237. * src/glpapi20.c
  238. New API routine glp_infeas1 to solve 0-1 feasibility problem
  239. was added and documented (see doc/cnfsat.pdf).
  240. * src/glpnpp06.c
  241. Some new preprocessor routines for SAT-CNF encoding, which are
  242. used by the routine glp_intfeas1, were added.
  243. * src/glpnpp.h
  244. The header was modified due to additions.
  245. * src/glpapi21.c
  246. The glpsol solver was modified to bypass model postprocessing
  247. if the solution reported is neither optimal nor feasible.
  248. * src/glpapi21.c
  249. New glpsol options (--minisat and --objbnd) were added.
  250. * examples/pbn/*.*
  251. The paint-by-numbers puzzle model (pbn.mod) was modified to
  252. print solution in PostScript format and to check for multiple
  253. solutions. Some benchmark examples from <webpbn.com> encoded
  254. in MathProg were included in the distribution. For more details
  255. see examples/pbn/README and examples/pbn/pbn.pdf.
  256. * examples/Makefile.am
  257. A minor bug was fixed to correctly build glpk in a separate
  258. directory. Thanks to Marco Atzeri <marco.atzeri@gmail.com> for
  259. bug report.
  260. Tue Aug 09 12:00:00 2011 Andrew Makhorin <mao@gnu.org>
  261. * GLPK 4.46 (31:0:31) has been released
  262. * src/glpk.h, src/Makefile
  263. glpk.h was relocated from 'include' to 'src', and 'include'
  264. subdir was removed; src/Makefile.am was changed appropriately.
  265. * src/zlib/*.*
  266. zlib general purpose compression library, version 1.2.5,
  267. was ANSIfied and modified according to GLPK requirements and
  268. included in the distribution as an external software module.
  269. For details see src/zlib/README.
  270. * src/glpdmx.c
  271. The following new API routines were added:
  272. glp_read_cnfsat - read CNF-SAT problem data in DIMACS format
  273. glp_check_cnfsat - check for CNF-SAT problem instance
  274. glp_write_cnfsat - write CNF-SAT problem data in DIMACS format
  275. * src/minisat/*.*
  276. MiniSat, a CNF-SAT solver, version 1.14.1, was ANSIfied and
  277. modified according to GLPK requirements and included in the
  278. distribution as an external software module.
  279. For details see minisat/README and minisat/LICENSE.
  280. * src/glpapi19.c
  281. The API routine glp_minisat1, which is a driver to the MiniSat
  282. solver, was included in the package.
  283. * doc/satcnf.*
  284. The document "CNF Satisfiability Problem" was included in the
  285. package. It is a supplement to the GLPK Reference Manual.
  286. * src/glpapi20.c
  287. New glpsol options (--cnf, --wcnf, and --minisat) was added.
  288. * glpsql.c
  289. Some bugs were fixed. Thanks to Xypron <xypron.glpk@gmx.de>.
  290. Sun Dec 05 12:00:00 2010 Andrew Makhorin <mao@gnu.org>
  291. * GLPK 4.45 (30:0:30) has been released
  292. * glplpx01.c
  293. A bug (it_cnt) in routine reset_parms was fixed.
  294. Thanks to Ali Baharev <ali.baharev@gmail.com> for report.
  295. * glpmpl03.c
  296. A bug (print "text\") was fixed.
  297. Thanks to Xypron <xypron.glpk@gmx.de> for report.
  298. * glpsql.c
  299. A precision bug was fixed.
  300. Thanks to Xypron <xypron.glpk@gmx.de>.
  301. * glpk.tex
  302. Some typos were corrected.
  303. Thanks to Robbie Morrison <robbie@actrix.co.nz>.
  304. Thu Jun 03 12:00:00 2010 Andrew Makhorin <mao@gnu.org>
  305. * GLPK 4.44 (29:0:29) has been released
  306. * glpapi14.c glpmpl.h glpmpl01.c glpmpl03.c glpmpl04.c
  307. Implemented suffixes for variables and constraints.
  308. * glpmpl06.c
  309. Made changes to allow comment records in CSV files.
  310. * glpapi17.c
  311. Added and documented new API routine glp_cpp to solve Critical
  312. Path Problem.
  313. Sat Feb 20 12:00:00 2010 Andrew Makhorin <mao@gnu.org>
  314. * GLPK 4.43 (28:0:28) has been released
  315. * glplib.h, glplib.c, glpenv.h, glpenv.c
  316. The module glpenv was split into two modules glpenv and glplib.
  317. * glpenv01.c, glpenv03.c, glpenv04.c, glpenv06.c
  318. The following new API routines were added and documented:
  319. glp_init_env, glp_free_env, glp_open_tee, glp_close_tee,
  320. glp_error (macro), glp_difftime.
  321. * glpapi16.c
  322. New API routine glp_top_sort (topological sorting of ayclic
  323. digraph) was added and documented.
  324. * glpapi17.c
  325. A serious bug was fixed in the routine glp_asn_prob_hall.
  326. * glpnpp05.c
  327. A bug was fixed in the LP/MIP preprocessor (hidden covering
  328. inequalities).
  329. * glpsql.c
  330. Some improvements were made in the table driver (NULL data).
  331. Thanks to Xypron <xypron.glpk@gmx.de> for contribution.
  332. * configure.ac
  333. Changes were made to use .dylib rather than .so under Mac OS.
  334. Thanks to Noli Sicad <nsicad@gmail.com> for testing
  335. Wed Jan 13 12:00:00 2010 Andrew Makhorin <mao@gnu.org>
  336. * GLPK 4.42 (27:0:27) has been released
  337. * glpapi01.c, glpapi11.c, glpapi12.c, glpdmx.c
  338. The following new API routines were added and documented:
  339. glp_check_dup (check for duplicate elements in sparse matrix);
  340. glp_sort_matrix (sort elements of the constraint matrix);
  341. glp_read_prob (read problem data in GLPK format);
  342. glp_write_prob (write problem data in GLPK format);
  343. glp_analyze_bound (analyze active bound of non-basic variable);
  344. glp_analyze_coef (analyze obj. coefficient at basic variable);
  345. glp_print_ranges (print sensitivity analysis report; replaces
  346. lpx_print_sens_bnds).
  347. * glpapi20.c
  348. New command-line options were added to glpsol:
  349. --glp (read problem data in GLPK format);
  350. --wglp (write problem data in GLPK format);
  351. --lp (replaces --cpxlp);
  352. --wlp (replaces --wcpxlp);
  353. --ranges (print sensitivity analysis report).
  354. * glpapi06.c
  355. In the routine glp_init_smcp default value of the parameter
  356. out_frq was changed to 500 (it was 200).
  357. * glpipp.h, glpipp01.c, glpipp02.c
  358. The old MIP preprocessor module was removed.
  359. * glpapi09.c
  360. Now the MIP solver uses the new MIP preprocessor (NPP).
  361. * glplpx03.c
  362. lpx_write_opb was disabled due to replacing IPP with NPP.
  363. * glpnet09.c
  364. Kellerman's heuristic to cover edges by cliques was added.
  365. * glplib08.c
  366. Recognition of special filenames "/dev/stdin", "/dev/stdout",
  367. and "/dev/stderr" was added.
  368. * glpk.tex
  369. Chapter "Graph and network routines" was carried out from the
  370. reference manual as a separate document.
  371. Mon Dec 21 12:00:00 2009 Andrew Makhorin <mao@gnu.org>
  372. * GLPK 4.41 (26:0:26) has been released
  373. * glpapi12.c
  374. The following new API routines were added:
  375. glp_transform_row (replaces lpx_transform_row);
  376. glp_transform_col (replaces lpx_transform_col);
  377. glp_prim_rtest (replaces lpx_prim_ratio_test);
  378. glp_dual_rtest (replaces lpx_dual_ratio_test).
  379. Note that values returned by glp_prim_rtest and glp_dual_rtest
  380. differ from the ones retutned by the deprecated routines.
  381. * glpnpp*.*
  382. The LP/MIP preprocessor was essentially re-implemented.
  383. * glpios03.c
  384. The feature to remove inactive cuts from the active subproblem
  385. was implemented.
  386. * glpios11.c
  387. The feature processing cuts stored in the cut pool was improved
  388. (now it uses estimation of objective degradation).
  389. * glpscg.*
  390. Obsolete implemetation of the conflict graph was removed.
  391. * glpmpl.h, glpmpl03.c, glpmpl04.c
  392. FILE was replaced by XFILE to allow using GLPK I/O routines.
  393. * glpsql.c, examples/sql, doc/tables.tex
  394. The SQL table driver was changed to allow multiple arguments
  395. separated by semicolon in SQL statements. Thanks to Xypron
  396. <xypron.glpk@gmx.de>.
  397. * glpk.h, glpapi14.c
  398. New API routine glp_time was added (not documented yet).
  399. * glpapi20.c
  400. Two new options were added to glpsol: --seed value (initialize
  401. pseudo-random number generator used in MathProg model with
  402. specified seed value), and --ini filename (use as initial basis
  403. previously saved with -w option).
  404. * examples/xyacfs.mod
  405. Thanks to Nigel Galloway <nigel_galloway@operamail.com> for
  406. contribution.
  407. * examples/dbf/*.*
  408. Thanks to Noli Sicad <nsicad@gmail.com> for contribution.
  409. * w32/*.*, w64/*.*
  410. Scripts to build GLPK with Microsoft Visual Studio 2010 were
  411. added. Thanks to Xypron <xypron.glpk@gmx.de> for contribution
  412. and testing.
  413. Tue Nov 03 12:00:00 2009 Andrew Makhorin <mao@gnu.org>
  414. * GLPK 4.40 (25:0:25) has been released
  415. * glpdmx.c
  416. Two new API routines were added:
  417. glp_read_ccdata (read graph in DIMACS clique/coloring format);
  418. glp_write_ccdata (write graph in DIMACS clique/coloring format).
  419. Also an example file examples/sample.col was added.
  420. * glpapi19.c, glpnet08.c
  421. New API routine glp_wclique_exact was added. It is intended to
  422. find a maximum weight clique with the exact algorithm developed
  423. by Prof. P. Ostergard.
  424. * glpnpp02.c
  425. A bug was fixed in the LP preprocessor (routine npp_empty_col).
  426. Thanks to Stefan Vigerske <stefan@math.hu-berlin.de> for the
  427. bug report.
  428. * glpios10.c
  429. A bug was fixed and some improvements were made in the FPUMP
  430. heuristic module. Thanks to Xypron <xypron.glpk@gmx.de>.
  431. * glpapi12.c
  432. A bug was fixed in the API routine glp_warm_up (dual
  433. feasibility test was incorrect in maximization case). Thanks to
  434. Uday Venkatadri <Uday.Venkatadri@dal.ca> for the bug report.
  435. * glpapi16.c
  436. Two new API routines were added:
  437. glp_del_vertices (remove vertices from graph);
  438. glp_del_arc (remove arc from graph).
  439. * glpios09.c
  440. The hybrid pseudocost branching heuristic was included in the
  441. MIP solver. It is available on API level (iocp.br_tech should
  442. be set to GLP_BR_PCH) and in the stand-alone solver glpsol
  443. (via the command-line option --pcost). This heuristic may be
  444. useful on solving hard MIP instances.
  445. * glpios03.c
  446. The branching heuristic by Driebeck and Tomlin (used in the
  447. MIP solver by default) was changed to switch to branching on
  448. most fractional variable if an lower bound of degradation of
  449. the objective is close to zero for all branching candidates.
  450. Sun Jul 26 12:00:00 2009 Andrew Makhorin <mao@mai2.rcnet.ru>
  451. * GLPK 4.39 (24:0:24) has been released
  452. * glpsdf.c
  453. New API routines to read plain data files were added.
  454. * glpcpx.h, glpini.h, glpscl.h
  455. These headers were removed.
  456. * glpcpx.c
  457. API routines glp_read_lp and glp_write_lp to read/write files
  458. in CPLEX LP format were re-implemented. Now glp_write_lp
  459. correctly writes double-bounded (ranged) rows by introducing
  460. slack variables rather than by duplicating the rows. The data
  461. structure glp_cpxcp and routine glp_init_cpxcp were added.
  462. * amd/*
  463. The 'xfree(NULL)' bug was fixed in the AMD routines. Thanks to
  464. Niels Klitgord <niels@bu.edu> for the bug report.
  465. * glpapi16.c
  466. New API routines glp_set_vertex_name, glp_create_v_index,
  467. glp_find_vertex, and glp_delete_v_index were added.
  468. * glpdmx.c
  469. New API routines glp_read_asnprob, glp_write_asnprob,
  470. glp_read_ccformat, and glp_write_ccformat were added (the two
  471. latter routines are not documented yet).
  472. * glpapi18.c
  473. New API routines glp_check_asnprob, glp_asnprob_lp,
  474. glp_asnprob_okalg, and glp_asnprob_hall were added.
  475. * glpini01.c, glpini02.c
  476. The message "Crashing..." was changed to "Constructing initial
  477. basis..." due to suggestion by Thomas Kahle <tom111@gmx.de>.
  478. * glpapi14.c
  479. New API routines glp_printf, glp_vprintf, glp_malloc,
  480. glp_calloc, glp_free, and glp_assert were added.
  481. * glplpp.h, glplpp01.c, glplpp02.c
  482. Old LP presolver routines were removed. Now glp_simplex uses
  483. new preprocessing routines (see glpnpp).
  484. * glpapi12.c
  485. New API routine glp_warm_up was added; it replaces the routine
  486. lpx_warm_up.
  487. Sat May 02 12:00:00 2009 Andrew Makhorin <mao@mai2.rcnet.ru>
  488. * GLPK 4.38 (23:0:23) has been released
  489. * glpmps.c
  490. API routines to read/write MPS files were re-implemented.
  491. * glpspx02.c
  492. Some improvements were made in the dual simplex routine.
  493. * glpk.h
  494. New structure glp_iptcp was added.
  495. * glpnpp.h, glpnpp01.c, glpnpp02.c
  496. New LP/MIP preprocessor. Currently it includes only some basic
  497. routines and used only in the interior-point solver.
  498. * glpapi08.c
  499. API routine glp_interior was replaced by an improved version
  500. (new LP/MIP preprocessor, new ordering algorithms).
  501. New API routine glp_init_iptcp was added.
  502. API routine glp_ipt_status may return two new statuses due to
  503. changes in glp_interior.
  504. * glpsol.c
  505. New command-line options were added (ordering algorithm used in
  506. the interior-point solver).
  507. * amd/*.*, colamd/*.*
  508. Two external software modules AMD and COLAMD/SYMAMD used in the
  509. interior-point solver were included in the distribution.
  510. For details see amd/README and colamd/README.
  511. * glpnet03.c, glpnet04.c, glpnet05.c
  512. A minor bug was fixed (_G => G_). Thanks to Nelson H. F. Beebe
  513. <beebe@math.utah.edu> for bug report.
  514. Sun Mar 29 12:00:00 2009 Andrew Makhorin <mao@mai2.rcnet.ru>
  515. * GLPK 4.37 (22:0:22) has been released
  516. * glpk.h
  517. iocp.fp_heur was added to enable/disable fpump heuristic.
  518. * glpios10.c
  519. ios_feas_pump was added (feasibility pump heuristic).
  520. * glpsol.c
  521. --fpump command-line option was added.
  522. * glpsds.c
  523. Plain data set routines were added to facilitate reading plain
  524. data in application programs. Currently these routines are not
  525. in API, though declared in glpk.h.
  526. * glpapi08.c
  527. A bug was fixed in the internal routine restore. (Due to this
  528. bug dual solution components were computed incorrectly if the
  529. problem was scaled.)
  530. * glpapi10.c, glpapi11.c
  531. The following new API routines were added:
  532. glp_print_sol (replaces lpx_print_sol);
  533. glp_print_ipt (replaces lpx_print_ips);
  534. glp_print_mip (replaces lpx_print_mip);
  535. _glp_check_kkt (replaces lpx_check_kkt, lpx_check_int).
  536. Now the routine lpx_print_prob (deprecated) is equivalent to
  537. the routine glp_write_lp.
  538. * glpapi18.c, glpapi19.c
  539. The following new API routines were added:
  540. glp_read_graph (read graph from plain text file);
  541. glp_write_graph (write graph to plain text file);
  542. glp_weak_comp (find all weakly connected components);
  543. glp_strong_comp (find all strongly connected components).
  544. * configure.ac, Makefile.am
  545. Changes were made: (a) to allow using autoreconf/autoheader;
  546. (b) to allow building glpk in a directory other than its source
  547. directory. Thanks to Marco Atzeri <marco_atzeri@yahoo.it> for
  548. bug report.
  549. * examples/shiftcover.mod
  550. An example model in MathProg was added.
  551. Thanks to Larry D'Agostino <Larry.D'Agostino@gmacrescap.com>
  552. for contribution.
  553. Fri Feb 06 12:00:00 2009 Andrew Makhorin <mao@mai2.rcnet.ru>
  554. * GLPK 4.36 (21:0:21) has been released
  555. * glpnet06.c, glpnet07.c, glpapi19.c
  556. The following new API routines were added:
  557. glp_mincost_okalg find minimum-cost flow with out-of-kilter
  558. algorithm
  559. glp_maxflow_ffalg find maximal flow with Ford-Fulkerson
  560. algorithm
  561. * glpsol.c
  562. Two new command-line options were added:
  563. --mincost read min-cost flow data in DIMACS format
  564. --maxflow read maximum flow data in DIMACS format
  565. * doc/glpk.*
  566. New edition of the reference manual was included.
  567. * glpk.h
  568. Duplicate symbols were removed to allow using swig.
  569. Thanks to Kelly Westbrooks <kellywestbrooks@yahoo.com> and
  570. Nigel Galloway <nigel_galloway@operamail.com> for suggestion.
  571. * glpcpx.c
  572. A minor defect was fixed in the routine glp_write_lp.
  573. Thanks to Sebastien Briais <sbriais@free.fr> for bug report.
  574. * glpsql.c
  575. A minor bug was fixed. Thanks to Xypron <xypron.glpk@gmx.de>
  576. for patch.
  577. * examples/hashi.mod, examples/shikaku.mod
  578. Two example models in MathProg were added. Thanks to Sebastian
  579. Nowozin <nowozin@gmail.com> for contribution.
  580. * examples/qfit.mod, examples/yacfs.mod
  581. Two example models in MathProg were added. Thanks to Nigel
  582. Galloway <nigel_galloway@operamail.com> for contribution.
  583. Fri Jan 09 12:00:00 2009 Andrew Makhorin <mao@mai2.rcnet.ru>
  584. * GLPK 4.35 (20:0:20) has been released
  585. * glpk.h, glpapi.c, glpnet.c
  586. The following new API routines were added:
  587. glp_create_graph create graph
  588. glp_set_graph_name assign (change) graph name
  589. glp_add_vertices add new vertices to graph
  590. glp_add_arc add new arc to graph
  591. glp_erase_graph erase graph content
  592. glp_delete_graph delete graph
  593. glp_read_mincost read minimum cost flow problem data in
  594. DIMACS format
  595. glp_write_mincost write minimum cost flow problem data in
  596. DIMACS format
  597. glp_mincost_lp convert minimum cost flow problem to LP
  598. glp_netgen Klingman's network problem generator
  599. glp_gridgen grid-like network problem generator
  600. glp_read_maxflow read maximum flow problem data in DIMACS
  601. format
  602. glp_write_maxflow write maximum flow problem data in DIMACS
  603. format
  604. glp_maxflow_lp convert maximum flow problem to LP
  605. glp_rmfgen Goldfarb's maximum flow problem generator
  606. * doc/glpk.*
  607. New edition of the reference manual was included.
  608. * examples/sample.min, examples/sample.max
  609. Two example data files in DIMACS format were added.
  610. * glplib04.c
  611. The statement "if (c = '\n') fflush(stdout)" was added to the
  612. internal routine xputc to provide "real-time" terminal output.
  613. Thanks to Luiz Bettoni <bettoni@cpgei.ct.utfpr.edu.br> for
  614. suggestion.
  615. * glpmpl05.c
  616. A minor bug was fixed in the internal routine mpl_fn_time2str.
  617. Thanks to Stefan Vigerske <stefan@vigerske.de> for bug report.
  618. * w32/makefile, w64/makefile
  619. The flag -O2 (/O2) was added to some makefiles.
  620. Thu Dec 04 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  621. * GLPK 4.34 (19:0:19) has been released
  622. * src/glpios03.c
  623. A bug was fixed in the internal routine branch_on. Thanks to
  624. Nigel Galloway <nigel_galloway@operamail.com> for bug report.
  625. * src/glpmpl05.c
  626. Three new MathProg functions were included:
  627. gmtime obtaining current calendar time
  628. str2time converting character string to calendar time
  629. time2str converting calendar time to character string
  630. Thanks to Xypron <xypron.glpk@gmx.de>.
  631. * doc/glpk.*, doc/gmpl.*
  632. A new edition of the GLPK reference manual and GNU MathProg
  633. language description were included.
  634. Thu Oct 30 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  635. * GLPK 4.33 (18:0:18) has been released
  636. * glpapi*.*
  637. The following new API routines were added:
  638. glp_copy_prob copy problem object content
  639. glp_exact solve LP in exact arithmetic
  640. (makes lpx_exact deprecated)
  641. glp_get_unbnd_ray determine variable causing unboundedness
  642. (makes lpx_get_ray_info deprecated)
  643. glp_interior solve LP with interior-point method
  644. (makes lpx_interior deprecated)
  645. * glpapi*.*
  646. The following new API routines for processing models written in
  647. the GNU Mathprog language were added to the package:
  648. glp_mpl_alloc_wksp allocate the translator workspace
  649. glp_mpl_read_model read and translate model section
  650. glp_mpl_read_data read and translate data section
  651. glp_mpl_generate generate the model
  652. glp_mpl_build_prob build LP/MIP instance from the model
  653. glp_mpl_postsolve postsolve the model
  654. glp_mpl_free_wksp deallocate the translator workspace
  655. (These routines make lpx_read_model deprecated.)
  656. * src/glpapi17.c, examples/glpsol.c
  657. The stand-alone solver glpsol was re-implemented with new API
  658. routines.
  659. * src/glpsql.c
  660. Some bugs were fixed in the SQL table driver. Thanks to Xypron
  661. <xypron.glpk@gmx.de>.
  662. * examples/cplex/*.*
  663. A crude implementation of CPLEX-like interface to GLPK API was
  664. added to the package. See examples/cplex/README.
  665. Fri Oct 03 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  666. * GLPK 4.32 (17:0:17) has been released
  667. * glpmpl01.c
  668. A bug was fixed. Due to this bug iterated expressions having
  669. an indexing expression whose dummy indices are bound to some
  670. values, i.e. like sum{(i+1,j,k-1) in E} x[i,j,k] are evaluated
  671. incorrectly. Namely, current value of such expressions is not
  672. invalidated when corresponding dummy indices (like i and k in
  673. the example above) are changed, that erroneously results in the
  674. same value evaluated for the first time.
  675. * glpios03.c
  676. Euclidean reduction of the local objective bound was added in
  677. the routine glpios03.c.
  678. * glpapi11.c
  679. The following new branch-and-cut API routines were added:
  680. glp_ios_row_attr determine additional row attributes;
  681. glp_ios_pool_size determine current size of the cut pool;
  682. glp_ios_add_row add constraint to the cut pool;
  683. glp_ios_del_row delete constraint from the cut pool;
  684. glp_ios_clear_pool delete all constraints from the cut pool.
  685. * glpapi08.c
  686. The following new features were included in the branch-and-cut
  687. solver (the API routine glp_intopt):
  688. MIP presolver;
  689. mixed cover cut generator;
  690. clique cut generator.
  691. Due to the MIP presolver glp_intopt may additionally return
  692. GLP_ENOPFS and GLP_ENODFS, if primal or dual infeasibility of
  693. LP relaxation is detected by the presolver. Also the return
  694. code GLP_EMIPGAP was introduced to correctly indicate that the
  695. mip gap tolerance is reached.
  696. * glplpx01.c
  697. Now the obsolete API routines lpx_integer and lpx_intopt are
  698. completely superseded by the API routine glp_intopt that makes
  699. them deprecated.
  700. * glpmpl05.c
  701. Now the table driver name "iODBC" can be specified as "ODBC".
  702. * glpmpl03.c
  703. A bug fixed in the routine free_dca.
  704. Thanks to Xypron <xypron.glpk@gmx.de>.
  705. * glpsql.c
  706. A bug was fixed in the SQL table driver.
  707. Thanks to Xypron <xypron.glpk@gmx.de>.
  708. * examples/glpsol.c
  709. Changes were made to allow multiple MathProg data files.
  710. * doc/glpk.*
  711. A new edition of the GLPK reference manual was included.
  712. * doc/tables.*
  713. A new edition of the supplement "Using data tables in the GNU
  714. MathProg language" was included.
  715. Tue Sep 02 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  716. * GLPK 4.31 (16:0:16) has been released
  717. * glpspx.h, glpspx01.c, glpspx02.c, glpapi06.c
  718. The dual simplex solver (spx_dual_opt) was replaced by a new
  719. implementation of the two-phase dual simplex method (spx_dual).
  720. Old simplex method routines (spx_prim_opt, spx_prim_feas, and
  721. spx_dual_opt) were removed from the package.
  722. * glpk.h, glpscl.h, glpscl.c, glpapi04.c
  723. New API routine glp_scale_prob was added. It replaces routine
  724. lpx_scale_prob which is deprecated.
  725. * glpk.h, glpini.h, glpini01.c, glpini02.c, glpapi05.c
  726. New API routines glp_std_basis, glp_adv_basis, glp_cpx_basis
  727. were added. They replace routines lpx_std_basis, lpx_adv_basis,
  728. lpx_cpx_basis which are deprecated.
  729. * glpdmp.c
  730. 8-byte data alignment was added to the module (sufficient for
  731. both ILP32 and LP64 environments).
  732. * glplib07.c
  733. 16-byte data alignment was added to the module to provide
  734. compatibility with LP64 environment (8-byte is not sufficient
  735. due to jmp_buf; thanks to Xypron for investigation).
  736. * glplpx16.c
  737. New version of the routine lpx_write_pb was added. Thanks to
  738. Oscar Gustafsson <oscarg@isy.liu.se> for the contribution.
  739. * w32/VC9, w64/VC9
  740. Makefiles and batch files were added to build GLPK under 32-
  741. and 64-bit Windows with Microsoft Visual Studio Express 2008.
  742. Thanks to Heinrich Schuchardt <heinrich.schuchardt@gmx.de> for
  743. the contribution and testing.
  744. * w32/DM, w32/OWC
  745. Makefiles and batch files were added to build GLPK with Digital
  746. Mars C/C++ 8.50 and Open Watcom C/C++ 1.6 (32-bit Windows).
  747. Wed Aug 13 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  748. * GLPK 4.30 (15:0:15) has been released
  749. * glpspx.h, glpspx03.c, glpapi06.c
  750. The primal simplex solver (spx_prim_opt, spx_prim_feas) was
  751. replaced by a new implementation (spx_primal), which currently
  752. provides the same features as the old version.
  753. * glpmpl01.c, glpmpl03.c
  754. Some changes were made in the MathProg translator to allow <,
  755. <=, >=, and > on comparing symbolic values. Thanks to Heinrich
  756. Schuchardt <heinrich.schuchardt@gmx.de> for patches.
  757. * glplpx10.c
  758. Internal routine set_d_eps in the exact LP solver was changed
  759. to prevent approximation errors in case of integral data.
  760. Thanks to Markus Pilz <pilz@cs.uni-bonn.de> for bug report.
  761. XXX XXX XX 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  762. * GLPK 4.29 (14:0:14) has been released
  763. * configure.ac
  764. The configure script was changed to disable optional features
  765. by default. For details see file INSTALL.
  766. * glpipp02.c
  767. A bug was fixed in the internal routine reduce_bounds. Thanks
  768. to Anne-Laurence Putz <anne-laurence.putz@eurodecision.com> for
  769. the bug report.
  770. * glpapi01.c
  771. New API routine glp_erase_prob was added.
  772. * glpapi13.c
  773. New API routines glp_read_mps and glp_write_mps were added.
  774. They replace API routines lpx_read_mps, lpx_read_freemps,
  775. lpx_write_mps, and lpx_write_freemps, which are deprecated.
  776. * glpapi14.c
  777. New API routines glp_read_lp and glp_write_lp were added. They
  778. replace API routines lpx_read_cpxlp and lpx_write_cpxlp, which
  779. are deprecated.
  780. * glpsql.c
  781. Minor bug was fixed. Thanks to Xypron <xypron.glpk@gmx.de> for
  782. the bug report.
  783. Tue Mar 25 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  784. * GLPK 4.28 (13:0:13) has been released
  785. * glplib.h, glplib.c
  786. Three wrapper routines xdlopen, xdlsym, and xdlclose, which
  787. provide the shared library support, were added. A particular
  788. version of these routines depends on the option --enable-dl
  789. passed to the configure script (see file INSTALL for details).
  790. Thanks to Rafael Laboissiere <rafael@debian.org> for useful
  791. advices concerning the shared library support.
  792. * glpsql.c
  793. A static linking to iODBC and MySQL libraries used in the
  794. MathProg table drivers was replaced by a dynamic linking to
  795. corresponding shared libraries.
  796. Many thanks to Heinrich Schuchardt <heinrich.schuchardt@gmx.de>
  797. for the contribution and to Vijay Patil <vijay.patil@gmail.com>
  798. for testing this feature under Windows XP.
  799. * glpgmp.h, glpgmp.c
  800. A bug (which appeared only on 64-bit platforms) was fixed.
  801. Thanks to Axel Simon <Axel.Simon@ens.fr> for the bug report.
  802. * glpapi.c
  803. A bug was fixed in the api routine glp_add_cols. (If the basis
  804. is valid, adding column keeps it valid, however, col->bind was
  805. set to -1 rather to 0.)
  806. Thanks to Cedric[FR] <fox2113@wanadoo.fr> for the bug report.
  807. * glplib.c
  808. 64-bit unsigned int type glp_ulong and corresponding routines
  809. were replaced by 64-bit signed int type xlong_t.
  810. * glpk.h, glpapi.c
  811. The type glp_ulong was replaced by glp_long. This affects only
  812. the api routine glp_mem_usage.
  813. * glplib.c
  814. Compressed data file support was added. This feature requires
  815. the zlib data compression libraries and allows compressing and
  816. decompressing .gz files "on the fly".
  817. * glpcli.h, glpcli.c
  818. Command-line interface routines were added. (This feature is
  819. incomplete so far.)
  820. Sun Mar 02 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  821. * GLPK 4.27 (12:0:12) has been released
  822. * glpsql.h, glpsql.c
  823. Two MathProg table drivers for iODBC and MySQL contributed by
  824. Heinrich Schuchardt <heinrich.schuchardt@gmx.de> were added to
  825. the package.
  826. * glpmpl05.c
  827. Mathprog table driver for xBASE was added to the package.
  828. * glpmpl03.c
  829. A minor was fixed in the MathProg translator (if some field
  830. specified in the table statement is missing in corresponding
  831. input table, the bug causes abnormal termination). Thanks to
  832. Heinrich Schuchardt <heinrich.schuchardt@gmx.de> for the bug
  833. report.
  834. * glpmpl.h, glpmpl.c
  835. STRING data type was replaced by plain character strings.
  836. Sun Feb 17 12:00:00 2008 Andrew Makhorin <mao@mai2.rcnet.ru>
  837. * GLPK 4.26 (11:0:11) has been released
  838. * glpmpl.h, glpmpl01.c, glpmpl03.c, glpmpl05.c
  839. The table statement was implemented. Description of this new
  840. feature is given in file doc/tables.txt.
  841. * glpios03.c
  842. A bug causing zero divide error on computing euclidean norm of
  843. the cut coefficient vector was fixed.
  844. Wed Dec 19 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  845. * GLPK 4.25 (10:0:10) has been released
  846. * glpapi10.c
  847. Routines lpx_eval_tab_row and lpx_eval_tab_col were replaced by
  848. glp_eval_tab_row and glp_eval_tab_col.
  849. * glpios03.c, glpios05.c
  850. Gomory's mixed integer cuts were implemented.
  851. * glpscs.h, glpscs.c
  852. Segmented character string routines are no longer used and were
  853. removed from the package.
  854. Wed Nov 21 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  855. * GLPK 4.24 (9:0:9) has been released
  856. * src/glplpx16.c
  857. A bug was fixed in the routine lpx_write_cpxlp. If a variable
  858. x has upper bound and no lower bound, it should appear in the
  859. bounds section as "-inf <= x <= u", not as "x <= u". Thanks to
  860. Enric Rodriguez <erodri@lsi.upc.edu> for the bug report.
  861. * src/glpios03.c, src/glpios04.c, src/glpios05.c
  862. MIR (mixed integer rounding) cuts were implemented.
  863. Sun Oct 28 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  864. * GLPK 4.23 (8:0:8) has been released
  865. * src/glplib05.c, configure.ac
  866. Check for vsnprintf was added.
  867. * include/glppds.h, src/glppds.c
  868. A module to scan plain data was added.
  869. * src/glpapi09.c
  870. The following new API routines were added:
  871. glp_read_sol read basic solution from text file;
  872. glp_write_sol write basic solution to text file;
  873. glp_read_ipt read interior-point solution from text file;
  874. glp_write_ipt write interior-point solution to text file;
  875. glp_read_mip read MIP solution from text file;
  876. glp_write_mip write MIP solution to text file.
  877. * src/glpapi12.c
  878. Advanced API routine glp_free_env was added.
  879. * examples/glpsol.c
  880. The following three command-line options were added:
  881. --mipgap tol set relative MIP gap tolerance
  882. -r filename read solution from filename
  883. -w filename write solution to filename
  884. Wed Sep 19 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  885. * GLPK 4.22 (7:0:7) has been released
  886. * src/glpios02.c
  887. A bug was fixed in the MIP preprocessor (ios_preprocess_node).
  888. Thanks to Roberto Bagnara <bagnara@cs.unipr.it> (Department of
  889. Mathematics, University of Parma, Italy) for the bug report.
  890. * src/glpios02.c
  891. A bug was fixed in the MIP preprocessor (col_implied_bounds),
  892. due to which constraint coefficients with small magnitude could
  893. lead to wrong implied bounds of structural variables.
  894. * src/glpipp02.c
  895. A similar bug was fixed in the routine reduce_bounds.
  896. * src/glpapi01.c
  897. A bug was fixed in the routines glp_set_mat_row and
  898. glp_set_mat_col. (The bug appeared due to incorrect removing
  899. zero elements from the row/column lists.)
  900. * src/glplpx14.c
  901. A bug was fixed in the API routines lpx_read_mps and
  902. lpx_read_freemps, due to which bounds of type LI specified in
  903. BOUNDS section were incorrectly processed.
  904. * src/glplib05.c
  905. A call to standard function vsprintf was replaced by a call to
  906. vsnprintf for security reasons. Many thanks to Peter T. Breuer
  907. <ptb@inv.it.uc3m.es> and Rafael Laboissiere <rafael@debian.org>.
  908. Tue Aug 28 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  909. * GLPK 4.21 (6:0:6) has been released
  910. * glpscg.h, glpscg.c
  911. Routines to maintain sparse cliqued graph were added.
  912. * glpios02.c
  913. MIP preprocessing routines were added.
  914. * glpk.h, glpios.h, glpios03.c
  915. New reasons for calling the callback routine were introduced
  916. in the MIP solver.
  917. * glpapi08.c
  918. Default backtracking strategy was changed to best local bound.
  919. * glpapi11.c
  920. New API routine glp_term_out to enable/disable terminal output
  921. was added.
  922. * glprng.h, glprng02.c
  923. Two routines to generate uniformly distributed pseudo-random
  924. floating-point numbers were added.
  925. Thu Jul 26 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  926. * GLPK 4.20 (5:0:5) has been released
  927. * glpk.h, glpapi08.c
  928. The routine lpx_integer was replaced by an equivalent routine
  929. glp_intopt. Also new API routine glp_init_iocp was added.
  930. * glpiet.h, glpiet.c
  931. Routines implementing the implicit enumeration tree are
  932. no longer used and therefore were removed from the package.
  933. * glpios.h, glpios01.c, glpios02, glpios03
  934. Routines implementing the integer optimization suite being
  935. replaced by a new version were removed from the package.
  936. * glpmip.h, glpmip01.c, glpmip02.c
  937. Routines implementing the B&B method being replaced by a new
  938. version were removed from the package.
  939. * glpios.h, glpios01.c, glpios02.c
  940. Routines implementing a new version of the integer optimization
  941. suite (IOS) based on the B&B method were added to the package.
  942. * glpk.h, glpapi10.c
  943. Branch-and-bound interface routines were added to the package.
  944. * examples/tspsol.c
  945. The TSP solver based on old version of the integer optimization
  946. suite is no more supported and was removed from the package.
  947. * glpipp02.c
  948. An error in the routine reduce_bounds was fixed; thanks to
  949. Graham Rockwell <bionomicron@gmail.com> for the bug report.
  950. * glpk.latex
  951. A new edition of the reference manual was included.
  952. Thu Jul 05 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  953. * GLPK 4.19 (4:0:4) has been released
  954. The principal change is upgrading to GPLv3.
  955. * glpapi01.c
  956. A serious bug in the routine glp_del_cols was fixed; thanks to
  957. Cedric[FR] <fox2113@wanadoo.fr> for the bug report. The bug
  958. appeared because on deleting non-basic columns the basis header
  959. remained valid, however, contained invalid (old) column ordinal
  960. numbers.
  961. * glpapi10.c
  962. A new advanced API routine glp_mem_limit was added.
  963. * glplpx01.c
  964. The case GLP_EBOUND was added to the routine lpx_simplex.
  965. Thanks to Cameron Kellough <Cameron.Kellough@sri.com> for the
  966. bug report.
  967. * glplpx19.c
  968. An API routine lpx_write_pb to write the problem instance in
  969. OPB (pseudo boolean) format format was added. Thanks to Oscar
  970. Gustafsson <oscarg@isy.liu.se> for the contribution.
  971. * glpsol.c
  972. Two new options --wpb and --wnpb were added to glpsol to write
  973. the problem instance in OPB format.
  974. Mon Jun 25 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  975. * GLPK 4.18 (3:0:3) has been released
  976. * glplib.h
  977. Type names ulong_t and uldiv_t were changed to glp_ulong and
  978. glp_uldiv to avoid conflicts with standard type names on some
  979. platforms. Thanks to Boris Wirtz <Boris.Wirtz@uni-oldenburg.de>
  980. for the bug report.
  981. * glpbfd.*, glpfhv.*, glplpf.*
  982. LP basis factorization routines were made tidy.
  983. * glpk.h, glpapi04.c
  984. The following API routines were added:
  985. glp_set_rii, glp_set_sjj, glp_get_rii, glp_get_sjj.
  986. * glpk.h, glpapi06.c
  987. The routine lpx_simplex was replaced by an equivalent routine
  988. glp_simplex. Also new API routine glp_init_smcp was added.
  989. * glpk.h, glpapi09.c
  990. The following advanced API routines were added:
  991. glp_bf_exists, glp_factorize, glp_bf_updated, glp_get_bfcp,
  992. glp_set_bfcp, glp_get_bhead, glp_get_row_bind, glp_get_col_bind,
  993. glp_ftran, glp_btran.
  994. * glpk.latex
  995. A new edition of the reference manual was included.
  996. * examples/dea.mod, examples/food.mod, examples/food2.mod
  997. Three examples in the MathProg language were added.
  998. Thanks to Sebastian Nowozin <nowozin@gmail.com>.
  999. Sat May 26 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  1000. * GLPK 4.17 (2:0:2) has been released
  1001. * glpdmp.h, glpdmp.c
  1002. Memory pool routines were replaced by a new version.
  1003. * glpscs.h, glpscs.c
  1004. Segmented string routines were replaced by a new version.
  1005. * glplpx08.c, glplpx09.c
  1006. Now the MIP problem may have no integer columns.
  1007. * glpapi01.c
  1008. The routines glp_set_mat_row, glp_set_mat_col, and glp_load_mat
  1009. were modified to allow zero elements (which are not stored in
  1010. the constraint matrix).
  1011. * glpscf.h, glpscf.c
  1012. Schur complement factorization routines were implemented.
  1013. * glplpf.h, glplpf.c
  1014. LP basis factorization routines based on LU-factorization and
  1015. Schur complement were implemented.
  1016. * glplpx02.c, glplpx03.c
  1017. New control parameter LPX_K_BFTYPE was introduced to choose the
  1018. basis factorization type used by the simplex method routines.
  1019. * glpsol.c
  1020. Three new command-line options were added to choose the basis
  1021. factorization type used by the simplex method routines: --luf,
  1022. --cbg, and --cgr.
  1023. * glpk.latex
  1024. A new edition of the reference manual was included.
  1025. Sat May 05 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  1026. * GLPK 4.16 (1:0:1) has been released
  1027. * glpk.h, glpapi.c, glplpx01.c, glplpx02.c
  1028. Names of a number basic api routines were changed and now have
  1029. the prefix 'glp_'. To keep backward compatibility these routines
  1030. are also available via their old names prefixed with 'lpx_'.
  1031. * glplpx19.c
  1032. Three new api routines were added: glp_version, glp_term_hook,
  1033. and glp_mem_usage.
  1034. * glpk.latex, gmpl.texi
  1035. A new edition of the reference manuals was included.
  1036. * lpglpk40.c
  1037. This example program is no longer supported and therefore was
  1038. removed from the package.
  1039. Sun Feb 18 12:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  1040. * GLPK 4.15 (0:0:0) has been released
  1041. * configure.ac, Makefile.am
  1042. Autotools specification files were changed to use GNU Libtool
  1043. that allows building the static as well as shared GLPK library.
  1044. Thanks to Rafael Laboissiere <rafael@debian.org>.
  1045. Mon Feb 05 08:00:00 2007 Andrew Makhorin <mao@mai2.rcnet.ru>
  1046. * GLPK 4.14 has been released
  1047. Now GLPK conforms to ILP32, LLP64, and LP64 programming models
  1048. (the latter seems to be the ultimate choice regarding 64-bit
  1049. architectures). Note that GLPK itself is a 32-bit application,
  1050. and the conformity only means that the package works correctly
  1051. on all these arenae. Nevertheless, on 64-bit platforms it is
  1052. possible to use more than 4GB of memory, if necessary.
  1053. * Makefile
  1054. Starting from this release only the header glpk.h is needed to
  1055. be installed.
  1056. * glplib01.c
  1057. Two routines bigmul and bigdiv which performs multiplication
  1058. and division of unsigned integers of arbitrary precision were
  1059. added.
  1060. * glplib02.c
  1061. A set of 64-bit arithmetic routines were added.
  1062. * glplib04.c
  1063. Some low-level library routines were improved and renamed.
  1064. * glpcfg.h
  1065. The macro GLP_TM_SPEC were introduced to specify a version of
  1066. the time routine depending on the host environment.
  1067. Mon Nov 13 12:00:00 2006 Andrew Makhorin <mao@mai2.rcnet.ru>
  1068. * GLPK 4.13 has been released
  1069. * configure.in
  1070. '-lm' bug was fixed.
  1071. * glpbfx.h, glpbfx.c
  1072. Basis factorization interface routines based on exact (bignum)
  1073. arithmetic were implemented.
  1074. * glpssx.h, glpssx1.c, glpssx2.c
  1075. Simplex method routines based on exact (bignum) arithmetic were
  1076. implemented.
  1077. * glplpx6e.c
  1078. The routine lpx_exact, which is an easy-to-use driver to the
  1079. exact simplex method, was added.
  1080. * glpsol.c
  1081. Two command-line options were added: '--exact' and '--xcheck'.
  1082. Wed Nov 08 12:00:00 2006 Andrew Makhorin <mao@mai2.rcnet.ru>
  1083. * GLPK 4.12 has been released
  1084. * glpcfg.h
  1085. The package configuration file was added.
  1086. * glplib2.c
  1087. Alternative version of the routines umalloc, ucalloc, and ufree
  1088. was provided. It does not limit the amount of allocated memory
  1089. to INT_MAX bytes and therefore can be used on platforms where
  1090. sizeof(void *) > sizeof(int). To enable this version one should
  1091. define the preprocessor variable GLP_HUGE_MEM.
  1092. * glprng.c
  1093. The routine rng_create_rand was changed to initialize the
  1094. generator using seed = 1, not 0, to conform ISO C requirements.
  1095. * glpgmp.h, glpgmp.c
  1096. A set of bignum arithmetic routines implementing operations on
  1097. integers and rationals was added. These routines are compatible
  1098. with the GNU MP library.
  1099. NOTE: To attain a much better performance it is recommended to
  1100. use, if possible, the original GNU MP library rather than the
  1101. GLPK version, by defining the preprocessor variable GLP_USE_GMP.
  1102. * glplux.h, glplux.c
  1103. A tentative implementation of sparse LU-factorization based on
  1104. exact (bignum) arithmetic was added.
  1105. * glpssx.h, glpssx.c
  1106. A tentative implementation of some simplex method routines based
  1107. on exact (bignum) arithmetic was added.
  1108. * glplpx6f.c
  1109. A preliminary implementation of the routine lpx_exact_check was
  1110. added. This routine checks the current basis for primal and dual
  1111. feasibility using exact (bignum) arithmetic.
  1112. * examples/glpsol.c
  1113. The command-line option '--xcheck' was introduced to check the
  1114. current basis for feasibility using exact (bignum) arithmetic.
  1115. Tue Jul 25 12:00:00 2006 Andrew Makhorin <mao@mai2.rcnet.ru>
  1116. * GLPK 4.11 has been released.
  1117. * include/glpbfi.h, src/glpbfi.c
  1118. Basis factorization interface routines were added.
  1119. * include/glpluf.h, src/glpluf1.c
  1120. Hypersparse solution routines were added.
  1121. * include/glpinv.h, src/glpinv1.c
  1122. Hypersparse solution routines (fake version) were added.
  1123. * include/glpmpl.h, src/glpmpl.c
  1124. Built-in functions card, length, and substr were implemented.
  1125. Output redirection in the printf statement was implemented.
  1126. * examples/graph.mod, examples/crypto.mod
  1127. Two example models illustrating new features of the modeling
  1128. language were included.
  1129. Thu May 11 12:00:00 2006 Andrew Makhorin <mao@mai2.rcnet.ru>
  1130. * GLPK 4.10 has been released.
  1131. * src/glplpx8a.c
  1132. A fragment was added to the routines lpx_read_mps and
  1133. lpx_read_freemps to accept LI bound type (it is similar to LO,
  1134. however, additionally marks the column as integer).
  1135. * include/glpbfi.h, src/glpbfi.c
  1136. The module glpbfi which implements the basis factorization
  1137. interface (BFI) was added.
  1138. * src/glplpx7a.c
  1139. The routine lpx_cover_cut to generate mixed cover cuts was
  1140. added.
  1141. * src/glplpx7b.c
  1142. The routine lpx_clique_cut to generate clique cuts and related
  1143. routines to maintain the conflict graph were added.
  1144. * include/glplpx.h, src/glplpx5.c
  1145. The routine lpx_cpx_basis implementing Bixby's algorithm to
  1146. construct an initial LP basis was added.
  1147. * examples/glpsol.c
  1148. Command-line option '--bib' was added which allows building
  1149. an initial LP basis using Bixby's algorithm.
  1150. Default command-line option '--mps' was changed to '--freemps'.
  1151. * examples/cf12a.mod, examples/cf12b.mod
  1152. Two examples in MathProg (curve fitting problem) were added.
  1153. Thanks to Dr. Harley Mackenzie <hjm@hardsoftware.com>.
  1154. Tue Jan 17 12:00:00 2006 Andrew Makhorin <mao@mai2.rcnet.ru>
  1155. * GLPK 4.9 has been released.
  1156. * glpipp.h, glpipp1.c, glpipp2.c
  1157. A MIP presolver were implemented (currently incomplete). It is
  1158. used internally in the routine lpx_intopt (see below).
  1159. * glplpx6d.c, glplpx7a.c
  1160. An advanced branch-and-bound solver (the routine lpx_intopt)
  1161. were implemented.
  1162. * glplpx6c.c
  1163. The routine lpx_check_int to check MIP feasibility conditions
  1164. was added.
  1165. * glplpx8a.c
  1166. The routine lpx_print_mip was changed to print MIP feasibility
  1167. conditions.
  1168. * glpmpl.h, glpmpl1.c, glpmpl3.c
  1169. The built-in functions sin, cos, atan, and atan2 were added to
  1170. the MathProg language.
  1171. * doc/lang.*
  1172. Some typos were fixed.
  1173. Thanks to Minh Ha Duong <haduong@centre-cired.fr> (CIRED, CNRS).
  1174. Wed Jan 12 12:00:00 2005 Andrew Makhorin <mao@mai2.rcnet.ru>
  1175. * GLPK 4.8 has been released.
  1176. * glpspx.h, glpspx1.c, glpspx2.c, glplpx6a.c
  1177. Simplex method routines were changed due to a new format of the
  1178. constraint matrix.
  1179. * glpmat.h, glpmat.c
  1180. Sparse matrix routines were re-implemented using storage-by-rows
  1181. format.
  1182. * glpipm.h, glpipm.c, glplpx6b.c
  1183. Interior-point method routines were changed due to a new format
  1184. of sparse matrices.
  1185. * glpchol.h, glpchol.c
  1186. Old version of Cholesky factorization routines being replaced by
  1187. a new one (see glpmat.c) was removed from the package.
  1188. * glplpx8c.c
  1189. Minor bug was fixed in api routine lpx_read_cpxlp.
  1190. Mon Aug 23 12:00:00 2004 Andrew Makhorin <mao@mai2.rcnet.ru>
  1191. * GLPK 4.7 has been released.
  1192. * glplpx.h, glplpx1.c
  1193. New core API routines were added (but not documented yet):
  1194. lpx_order_matrix, lpx_create_index, lpx_find_row, lpx_find_col,
  1195. lpx_delete_index.
  1196. * glplpx8a.c
  1197. API routine lpx_read_mps was re-implemented, and two new API
  1198. routines lpx_read_freemps and lpx_write_freemps were added to
  1199. support free MPS format.
  1200. * glplpx8c.c
  1201. Two API routines lpx_read_cpxlp and lpx_write_cpxlp (formerly
  1202. named lpx_read_lpt and lpx_write_lpt) were re-implemented.
  1203. * glpmps.h, glpmps.c
  1204. This module formerly used in lpx_read_mps was removed from the
  1205. package.
  1206. * glplpt.h, glplpt.c
  1207. This module formerly used in lpx_read_lpt was removed from the
  1208. package.
  1209. * glpmip.h, glpmip1.h, glpmip2.h
  1210. New MIP routines mip_best_node and mip_relative_gap were added
  1211. due to suggestion of Brady Hunsaker <hunsaker@engr.pitt.edu>.
  1212. * glpsol.c
  1213. The following new command-options were added:
  1214. --freemps to read problem data in free MPS format
  1215. --wfreemps to write problem data in free MPS format
  1216. --cpxlp to read problem data in CPLEX LP format
  1217. --wcpxlp to write problem data in CPLEX LP format
  1218. --bas to read LP basis from a text file in MPS format
  1219. --wbas to write LP basis to a text file in MPS format
  1220. --mostf to use "most fractional" branching heuristic
  1221. --bestb to use "best bound" backtracking heuristic
  1222. * contrib/deli/*.*
  1223. GLPK Delphi interface module was temporarily removed from the
  1224. distribution due to licensing problems.
  1225. * contrib/glpkmex/*.*
  1226. GLPK Matlab interface module was temporarily removed from the
  1227. distribution due to licensing problems.
  1228. * contrib/jni/*.*
  1229. GLPK Java interface module was temporarily removed from the
  1230. distribution due to licensing problems.
  1231. Wed Aug 04 12:00:00 2004 Andrew Makhorin <mao@mai2.rcnet.ru>
  1232. * GLPK 4.6 has been released.
  1233. * glpmpl.h, glpmpl1.c, glpmpl2.c, glpmpl3.c, glpmpl4.c
  1234. Three new statements were implemented in the GNU MathProg
  1235. language: solve, printf, and for. Also some bugs were fixed.
  1236. * glplpx.h, glplpx8e.c
  1237. Two API routines were added: lpx_read_prob and lpx_write_prob,
  1238. which allow reading and writing problem data in GNU LP format.
  1239. * glpsol.c
  1240. Three new command-line options were added: --glp (to read
  1241. problem data in GNU LP format), --wglp (to write problem data
  1242. in GNU LP format), and --name (to change problem name).
  1243. * glprng.h, glprng.c
  1244. A portable pseudo-random number generator was implemented as a
  1245. separate module.
  1246. * glplib4.c
  1247. The old implementation of a pseudo-random number generator was
  1248. removed from the package.
  1249. * doc/lang.*, doc/refman.*
  1250. New edition of the GLPK documentation was included.
  1251. * contrib/glpkmex/*.*
  1252. A new version of GLPKMEX was included in the distribution. For
  1253. more details see contrib/glpkmex/ChangeLog.
  1254. Mon Jul 19 12:00:00 2004 Andrew Makhorin <mao@mai2.rcnet.ru>
  1255. * GLPK 4.5 has been released.
  1256. * glpmip.h, glpmip1.c, glpmip2.c, glplpx6c.c
  1257. New implementation of the branch-and-bound method was added.
  1258. It replaces the old implementation, which was removed from the
  1259. package.
  1260. * glpies.h, glpies1.c, glpies2.c, glpies3.c
  1261. Modules used in the old implementation of the branch-and-bound
  1262. method were removed from the package.
  1263. * glplib2.c
  1264. Now if the preprocessor variable GLPHUGEMEM is defined, other
  1265. version of the routines umalloc, ucalloc, and ufree is used on
  1266. compiling the package. This allows avoiding memory allocation
  1267. problems on platforms where sizeof(void *) > sizeof(int), for
  1268. example, where addresses are 64-bit while integers are 32-bit.
  1269. The modification was made due to a bug report provided by Karel
  1270. Zimmermann <kzimm@diamant.jouy.inra.fr> and Christophe Caron
  1271. <caron@diamant.jouy.inra.fr>.
  1272. Sat Jan 17 12:00:00 2004 Andrew Makhorin <mao@mai2.rcnet.ru>
  1273. * GLPK 4.4 has been released.
  1274. * glplpx.h, glplpx*.c
  1275. All API routines were re-implemented using new data structures.
  1276. Some new API routines were added and some existing API routines
  1277. became obsolete as shown below:
  1278. Obsolete API routine Equivalent new API routine
  1279. lpx_check_name (no more supported)
  1280. lpx_set_obj_c0 lpx_set_obj_coef
  1281. lpx_set_row_coef (no more supported)
  1282. lpx_set_col_coef lpx_set_obj_coef
  1283. lpx_load_mat (no more supported)
  1284. lpx_load_mat3 lpx_load_matrix
  1285. lpx_unmark_all (no more supported)
  1286. lpx_mark_row (no more supported)
  1287. lpx_mark_col (no more supported)
  1288. lpx_clear_mat (no more supported)
  1289. lpx_del_items lpx_del_rows, lpx_del_cols
  1290. lpx_get_row_bnds lpx_get_row_type, lpx_get_row_lb,
  1291. lpx_get_row_ub
  1292. lpx_get_col_bnds lpx_get_col_type, lpx_get_col_lb,
  1293. lpx_get_col_ub
  1294. lpx_get_obj_c0 lpx_get_obj_coef
  1295. lpx_get_row_coef (no more supported)
  1296. lpx_get_col_coef lpx_get_obj_coef
  1297. lpx_get_row_mark (no more supported)
  1298. lpx_get_col_mark (no more supported)
  1299. lpx_get_row_info lpx_get_row_stat, lpx_get_row_prim,
  1300. lpx_get_row_dual
  1301. lpx_get_col_info lpx_get_col_stat, lpx_get_col_prim,
  1302. lpx_get_col_dual
  1303. lpx_get_ips_stat lpx_ipt_status
  1304. lpx_get_ips_row lpx_ipt_row_prim, lpx_ipt_row_dual
  1305. lpx_get_ips_col lpx_ipt_col_prim, lpx_ipt_col_dual
  1306. lpx_get_ips_obj lpx_ipt_obj_val
  1307. lpx_get_mip_stat lpx_mip_status
  1308. lpx_get_mip_row lpx_mip_row_val
  1309. lpx_get_mip_col lpx_mip_col_val
  1310. lpx_get_mip_obj lpx_mip_obj_val
  1311. Obsolete API routines were kept for backward compatibility,
  1312. however, they will be removed in the future.
  1313. * doc/refman.*
  1314. New edition of the GLPK reference manual containing description
  1315. of all new API routines was included.
  1316. * contrib/glpkmex/*.*
  1317. GLPKMEX, a Matlab MEX interface to GLPK package, contributed by
  1318. Nicolo Giorgetti <giorgetti@dii.unisi.it> was included.
  1319. * doc/GLPK_FAQ.txt
  1320. GLPK FAQ contributed by Harley Mackenzie <hjm@bigpond.com> was
  1321. included.
  1322. Fri Dec 12 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1323. * GLPK 4.3 has been released.
  1324. * configure.in
  1325. The bug, due to which the standard math library is not linked on
  1326. some platforms, was fixed.
  1327. * glpmpl3.c
  1328. The bug (0 ** y) was fixed in the routine fp_power.
  1329. * glpmpl.h, glpmpl1.c, glpmpl3.c
  1330. Some new built-in functions (round, trunc, Irand224, Uniform01,
  1331. Uniform, Normal01, Normal) were added to the MathProg language.
  1332. * glpmpl1.c
  1333. The MathProg syntax was changed to allow writing 'subj to'.
  1334. * glplpx.h, glplpx1.c, glplpx2.c
  1335. The new api routine lpx_get_ray_info was added.
  1336. * glplpx8a.c
  1337. The api routine lpx_print_sol was changed to print the number of
  1338. non-basic variable, which causes primal unboundness.
  1339. * glpmps.c
  1340. The code was changed to avoid errors on compiling the package on
  1341. Mac OS X. Thanks to Andre Girard <andre@inrs-emt.uquebec.ca> for
  1342. the bug report.
  1343. * doc/lang.*, doc/refman.*
  1344. Several typos were fixed and some new material was added in the
  1345. glpk documentation.
  1346. Fri Nov 14 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1347. * GLPK 4.2 has been released.
  1348. * glpiet.h, glpiet.c, glpios.h, glpios1.c, glpios2.c, glpios3.c
  1349. A preliminary implementation of the Integer Optimization Suite
  1350. (IOS) was included in the package. Eventually IOS will replace
  1351. the Implicit Enumeration Suite (IES).
  1352. * glplpx.h, glplpx6d.c
  1353. A dummy version of the integer optimization routine lpx_intopt
  1354. was included in the package. Later this routine will replace the
  1355. routine lpx_integer.
  1356. * examples/glpsol.c
  1357. A new command-line option --int-opt was added to the solver to
  1358. call lpx_intopt rather than lpx_integer.
  1359. * glpbcs.h, glpbcs1.c, glpbcs2.c
  1360. Being replaced by IOS routines (see above) the Branch-and-Cut
  1361. Framework (BCS) routines were removed from the package.
  1362. * examples/tspsol.c
  1363. Stand-alone Symmetric TSP solver was completely re-programmed
  1364. using IOS routines.
  1365. * glplib.h, glplib2.c, glplib4.c
  1366. The random-number generator was implemented. It is based on the
  1367. module GB_FLIB from the Stanford GraphBase originally developed
  1368. by Donald Knuth.
  1369. * glphbsm.c, glplpx8a.c, glpmps.c
  1370. All calls to fopen/fclose were replaced by corresponding calls
  1371. to ufopen/ufclose due to bug reports provided by Morten Welinder
  1372. <terra@gnu.org> and <jpark@sfwmd.gov>.
  1373. * glpmps.c
  1374. The code was made re-entrant.
  1375. * glplpx8b.c
  1376. API routine lpx_print_sens_bnds for bounds sensitivity analysis
  1377. contributed by Brady Hunsaker <hunsaker@engr.pitt.edu> was added
  1378. to the package. This feature is also available in glpsol via the
  1379. command-line option --bounds.
  1380. * contrib/jni/*.*
  1381. New version of GLPK JNI (Java Native Interface) contributed by
  1382. Chris Rosebrugh <cpr@pobox.com> was added to the package.
  1383. * contrib/deli/*.*
  1384. GLPK DELI (Delphi Interface) contributed by Ivo van Baren
  1385. <i.van.baren@freeler.nl> was added to the package.
  1386. * glplpx3.c
  1387. Default method to scale the problem was changed to equilibration
  1388. scaling (lp->scale = 1 in lpx_reset_parms).
  1389. * glplpx6a.c
  1390. Two minor (non-critical) typos were fixed due to report provided
  1391. by Andrew Hamilton-Wright <andrewhw@ieee.org>.
  1392. * glplpp2.c
  1393. An untested case (line 941) had been tested due to bug report
  1394. provided by Jiri Spitz <jiri.spitz@telecom.cz>.
  1395. * w32bc5.mak, w32vc6.mak, w32vc6d.mak, d32dmc.mak
  1396. Several makefiles were added to allow building GLPK library for
  1397. some non-GNU 32-bit platforms.
  1398. Sat Aug 23 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1399. * GLPK 4.1 has been released.
  1400. * glpmpl1.c, glpmpl3.c
  1401. Some bugs were fixed in the MathProg translator due to the bug
  1402. reports provided by Giles Thompson <gwpt1@cus.cam.ac.uk>:
  1403. conditional set expressions were incorrectly parsed;
  1404. dimen attribute was not set by default when a set was used
  1405. recursively in its own declaration;
  1406. logical expressions ... in if ... then ... else ... did not
  1407. work;
  1408. displaying set expressions did not free memory allocated for
  1409. temporary results.
  1410. * glpmpl3.c (reduce_terms)
  1411. Implementation of summation of linear forms over domain was
  1412. improved to reduce complexity of that operation from O(n*n) to
  1413. O(n*log n). The improvement was made due to a report provided
  1414. by Sebastien de Menten <sdementen@hotmail.com>.
  1415. * glplpx6a.c (line 1056), glpmip1.c (line 641)
  1416. Two minor bugs were fixed due to the bug report provided by
  1417. Kendall Demaree <kendal.demaree@verizon.net>.
  1418. * glplpx.h, glplpx6a.c
  1419. The method of one artificial variable implemented in the routine
  1420. lpx_prim_art and used on the phase I in the glpk simplex solver
  1421. has a serious defect: for some lp instances it erroneously
  1422. reports that the problem has no primal feasible solution. This
  1423. error appears when the column of the artificial variable, which
  1424. enters the basis to make it primal feasible, has large
  1425. constraint coefficients, that leads to small reduced costs of
  1426. non-basic variables and premature termination of the search,
  1427. i.e. to wrong conclusion that the problem has no primal feasible
  1428. solution. To avoid this defect the routine lpx_prim_feas was
  1429. included. It implements the method of implicit artifical
  1430. variables (based on minimization of the sum of infeasibilities),
  1431. which is a bit slower but much more robust. The routine
  1432. lpx_prim_feas having the same functionality now is used instead
  1433. the routine lpx_prim_art.
  1434. * glpinv.h, glpinv.c
  1435. The test used in the routine inv_update to detect low accuracy
  1436. after updating LU-factorization of the basis matrix was replaced
  1437. by a new, more robust test.
  1438. * glplpx6c.c
  1439. Selecting an active node to be solved next in the routine
  1440. btrack_bestp was changed. Now, if any integer feasible solution
  1441. has not been found yet, the routine chooses an active node which
  1442. has the minimal sum of integer infeasibilities.
  1443. * glpmip.h, glpmip1.c
  1444. The additional flag int_obj was included in the structure
  1445. MIPTREE used by the branch-and-bound. This flag is set in the
  1446. routine mip_create_tree and used in the routine is_better. It
  1447. means that the objective is integral, i.e. depends only on
  1448. integer variables with integer objective coefficients. The test
  1449. used in the routine check_integrality was also replaced by a
  1450. new, more reasonable one.
  1451. * glplpx1.c
  1452. A minor bug was fixed in the routine lpx_check_name.
  1453. * glpmpl.h, glpmpl4.c, glplpx8d.c
  1454. The flag skip_data was added to the parameter list of the
  1455. routine mpl_read_model. If this flag is set, the data section
  1456. in the model file is ignored. Corresponding change was made in
  1457. the routine lpx_read_model. Now, if both model and data files
  1458. are specified, the data section in the model file is ignored.
  1459. * glplpx8c.c
  1460. A minor bug (wrong format used for writing free columns) in the
  1461. routine lpx_write_lpt was fixed due to the bug report provided
  1462. by Bernhard Schmidt <schmidt@math.uni-augsburg.de>
  1463. * sample/glpsol.c
  1464. The command-line parameter --tmlim, which allows limiting the
  1465. solution time, was added.
  1466. * doc/lang.*, doc/refman.*
  1467. New edition of the GLPK documentation was included.
  1468. * java-binding/*.*
  1469. New version of the GLPK JNI (Java Native Interface) package was
  1470. included in the distribution.
  1471. * sample/lpglpk40.c
  1472. A non-trivial example was added. It allows using GLPK as a base
  1473. LP solver for Concorde, a program for solving Traveling Salesman
  1474. Problem (TSP). For details see comments in lpglpk40.c.
  1475. * sample/*.mod
  1476. Some examples of LP and MIP models written in GNU MathProg were
  1477. added.
  1478. Tue May 06 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1479. * GLPK 4.0 has been released.
  1480. * glpmpl.h, glpmpl1.c, glpmpl2.c, glpmpl3.c, glpmpl4.c
  1481. The model translator for the GNU MathProg modeling language was
  1482. implemented and included in the package.
  1483. * glplpx.h, glplpx8d.c
  1484. The api routine lpx_read_model, which is an interface to the
  1485. MathProg translator, was included in the package.
  1486. * glplpx.h, glplpx8a.c
  1487. The api routine lpx_print_prob for writing LP/MIP problem data
  1488. in plain text format was included in the package.
  1489. * sample/glpsol.c
  1490. New version of the GLPK stand-alone LP/MIP solver that supports
  1491. the GNU MathProg modeling language was implemented.
  1492. * doc/lang.latex, doc/lang.dvi, doc/lang.ps
  1493. The document "GLPK: Modeling Language GNU MathProg" was included
  1494. in the package.
  1495. * doc/refman.latex, doc/refman.dvi, doc/refman.ps
  1496. New edition of the GLPK Reference Manual was included in the
  1497. package.
  1498. * glplpx8c.c
  1499. A bug in the api routine lpx_write_lpt was fixed. Due to that
  1500. bug an addressing error occured in the routine if the objective
  1501. function has the non-zero constant term.
  1502. * glplan.h, glplan1.c, glplan2.c, glplan3.c, glplan4.c,
  1503. * glplan5.c, glplan6.c, glplan7.c, glplan8.c, glplpx8b.c
  1504. All modules of the translator for the GLPK/L modeling language
  1505. were removed from the package, because GLPK/L being completely
  1506. superseded by GNU MathProg is no more supported.
  1507. Tue Mar 25 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1508. * GLPK 3.3 has been released.
  1509. * glplpp.h, glplpp1.c, glplpp2.c
  1510. An implementation of the built-in LP presolver was added to the
  1511. package.
  1512. * glplpx.h
  1513. The flag presol was added to the structure LPX. This flag tells
  1514. the lpx_simplex whether the built-in LP presolver should be used
  1515. or not. By default this flag is off. Also three macros (namely
  1516. LPX_E_NOPFS, LPX_E_NODFS, and LPX_K_PRESOL) that concern using
  1517. the LP presolver were introduced.
  1518. * glplpx3.c, glplpx6a.c
  1519. These modules was changed to use the built-in LP presolver.
  1520. * sample/glpsol.c
  1521. Command line options --presol and --nopresol that concern using
  1522. the LP presolver were added to the stand-alone LP/MIP solver.
  1523. * glplan1.c
  1524. This module was changed to allow declaring sets like A[1:10] in
  1525. the models written in the GLPK/L modeling language.
  1526. * doc/refman.latex, doc/lang.latex
  1527. New editions of the documents "GLPK User's Guide" and "GLPK/L
  1528. Modeling Language" were included in the distribution.
  1529. * java-binding/*.*
  1530. The package GLPK JNI (Java Native Interface) implementing Java
  1531. binding for GLPK was included in the distribution. This package
  1532. was developed and programmed by Yuri Victorovich <yuri@gjt.org>.
  1533. Tue Feb 18 12:00:00 2003 Andrew Makhorin <mao@mai2.rcnet.ru>
  1534. * GLPK 3.2.4 has been released.
  1535. * glplpx6b.c
  1536. The code was changed to allow auxiliary variables have non-zero
  1537. objective coefficients.
  1538. Also a minor bug was fixed (the constant term was not considered
  1539. on displaying the objective function value).
  1540. * sample/glpsol.c
  1541. The code was changed to fix a bug (the command-line option 'bfs'
  1542. was not recognized). The bug was fixed due to report provided by
  1543. Olivier <odwl@skynet.be>.
  1544. * glplpt.c
  1545. The code was changed to fix a bug (binary variables were treated
  1546. erroneously as integer ones).
  1547. * glplpx6b.c
  1548. The code was changed to fix a bug (variables that have no lower
  1549. bounds were incorrectly processed on converting to the standard
  1550. formulation). The bug was fixed due to report kindly provided by
  1551. Kjell Eikland <kjell.eikland@broadpark.no>.
  1552. Mon Nov 11 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1553. * GLPK 3.2.3 has been released.
  1554. * glpmip.h, glpmip1.c
  1555. A preliminary implementation of the branch-and-bound driver
  1556. based on the implicit enumeration suite (glpies) was added to
  1557. the package. This module is not documented yet.
  1558. * glplpx6c.c
  1559. A new implementation of the api routine lpx_integer which now
  1560. is based on the b&b driver (see glpmip above) was included in
  1561. the package. This new implementation has exactly the same
  1562. functionality as the old version and therefore all changes are
  1563. transparent to the api user.
  1564. * glpbbm.h, glpbbm.c
  1565. * glprsm.h, glprsm1.c, glprsm2.c
  1566. * glplp.h, glplp.c
  1567. These modules were removed from the package, because they were
  1568. used only in the old version of the routine lpx_integer, which
  1569. was replaced by the new version (see glplpx6c above).
  1570. * glplpx.h, glplpx6a.c
  1571. The api routine lpx_check_kkt was included in the package and
  1572. its description was added in the reference manual. This routine
  1573. allows checking Karush-Kuhn-Tucker optimality conditions for an
  1574. LP solution.
  1575. * glplpx.h, glplpx8a.c
  1576. Now the api routine lpx_print_sol also prints information about
  1577. "solution quality" obtained via the api routine lpx_check_kkt.
  1578. * glplpx.h, glplpx8a.c
  1579. New api routines lpx_read_bas and lpx_write_bas were included
  1580. in the package and documented. The routine lpx_write_bas allows
  1581. writing a current basis from an LP object to a text file in the
  1582. MPS format. The routine lpx_read_bas allows reading a basis
  1583. prepared in the MPS format from a text file into an LP object.
  1584. * glplpt.c
  1585. The parsing routine which reads LP problem data prepared in the
  1586. CPLEX LP format was modified to allow specifying lower bounds
  1587. of variables also in the form 'variable >= lower bound' (in the
  1588. bounds section). This modification was made due to a notice
  1589. provided by Ivan Luzzi <iluzzi@libero.it>.
  1590. * glplpx.h, glplpx8c.c
  1591. The api routine lpx_write_lpt which allows writing LP problem
  1592. data from an LP object to a text file using the CPLEX LP format
  1593. was included in the package and documented.
  1594. * glplpx.h, glplpx3.c
  1595. The control parameter LPX_K_LPTORIG that affects the behavior
  1596. of the api routine lpx_write_lpt was introduced.
  1597. * glplan6.c
  1598. The semantics of the language GLPK/L was changed to allow
  1599. selection in case when not all mute letters of a predicate (the
  1600. operand that follows the keyword 'where') are presented in a
  1601. parameter (the operand that precedes the keyword 'where'), i.e.
  1602. to allow writing something like this:
  1603. y[j] := sum(i, x[i] where p[i,j]);
  1604. The paragraph "Selection" in the langauge description (page 25)
  1605. was also correspondingly changed. This change of the language
  1606. semantics was undertaken due to a notice provided by Peter Lee
  1607. <plee@kinggee.com.au>.
  1608. * sample/hwd.lpm
  1609. A nice example of LP model written in GLPK/L and contributed by
  1610. Peter Lee <plee@kinggee.com.au> was included in the package.
  1611. * glplpx6b.c
  1612. The api routine lpx_interior was modified: a) to compute dual
  1613. values for all structural as well as auxiliary variables; b) to
  1614. allow specifying non-zero objective coefficients at auxiliary
  1615. variables.
  1616. * sample/glpsol.c
  1617. Three new command-line options were added to the solver, which
  1618. are: --plain, --orig, and --wrlpt.
  1619. Mon Oct 14 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1620. * GLPK 3.2.2 has been released.
  1621. * glplpt.h, glplpt.c
  1622. A module that reads LP/MIP problem data in CPLEX LP format was
  1623. implemented.
  1624. * glplpx8c.c
  1625. An api routine lpx_read_lpt that reads LP/MIP problem data in
  1626. CPLEX LP format was implemented.
  1627. * sample/glpsol.c, sample/plan.lpt
  1628. A new command-line option '--lpt' that allows reading LP/MIP
  1629. problem data in CPLEX LP format was added to the solver.
  1630. * doc/refman.latex, doc/refman.dvi, doc/refman.ps
  1631. A new edition of the Reference Manual was included.
  1632. * source/*.c
  1633. Casting to (unsigned char) was added in some calls to the
  1634. classification functions (isalpha, etc.). The bug was fixed due
  1635. to report provided by Morten Welinder <terra@diku.dk>.
  1636. * glplpx8a.c
  1637. The local routine mps_numb used in the routine lpx_write_mps
  1638. was modified to correctly format floating-point numbers that
  1639. have two digits in the decimal exponent. The bug was fixed due
  1640. to report provided by Vlahos Kiriakos <Kiriakos.Vlahos@gs.com>.
  1641. * glplan.h, glplan1.c, ..., glplan8.c
  1642. Several serious bugs were fixed in the language processor due
  1643. to reports provided by <NORBERT.PIOTROWSKI@LHSYSTEMS.COM>:
  1644. (a) a static search tree used to find sparse array elements was
  1645. sometimes overwritten that caused the message 'assertion failed'
  1646. to appear; the bug was fixed by creating separate search trees
  1647. in parsing routines; (b) a variable declared using the
  1648. predicate-controlled variable declaration statement had wrong
  1649. order of domain sets, because the variable array was built as
  1650. a copy of the predicate array; the bug was fixed by using the
  1651. internal routine transpose that coordinates mute letters (and
  1652. therefore domain sets) on copying sparse arrays; (c) sometimes
  1653. assignment statements like x[#a,#b,#c] := ... was incorrectly
  1654. processed; the bug was fixed by including an appropriate check
  1655. into the internal routine assign_stmt.
  1656. * glp_simplex.c
  1657. An additional check to see if all lower bounds are not greater
  1658. than corresponding upper bounds was included in the routine to
  1659. prevent wrong results to appear. Such incorrectness sometimes
  1660. was not detected, namely, when variables with such bounds were
  1661. non-basic and never entered the basis.
  1662. * glpspx1.c
  1663. Maximal number of simplex iterations before reinversion was
  1664. decreased from 100 to 50. This allowed to improve accuracy and,
  1665. that is more important, to reduce the solution time for many
  1666. serial lp problems approximately 1.5--2 times.
  1667. * glpspx2.c
  1668. A check to see if all elements in the column chosen to enter
  1669. the basis are close to zero in the routine spx_prim_chuzr was
  1670. temporarily removed because this check gave wrong conclusion in
  1671. case when the corresponding non-basic variable had zero column
  1672. in the constraint matrix. An analogous check to see if all
  1673. elements in the row chosen to leave the basis are close to zero
  1674. in the routine spx_dual_chuzc was also temporarily removed on
  1675. the same reason. The bug was fixed due to reports provided by
  1676. Flavio Keidi Miyazawa <fkm@ic.unicamp.br> and Vlahos Kiriakos
  1677. <Kiriakos.Vlahos@gs.com>.
  1678. Mon Aug 12 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1679. * GLPK 3.2.1 has been released.
  1680. * glpbcs.h, glpbcs1.c, glpbcs2.c
  1681. * glpies.h, glpies1.c, glpies2.c, glpies3.c
  1682. A preliminary implementation of the branch-and-cut framework
  1683. was included in the package.
  1684. * doc/brcut.txt
  1685. The document "GLPK: A Preliminary Implementation of the
  1686. Branch-And-Cut Framework" was included in the distribution.
  1687. * sample/tspsol.c
  1688. An illustrative program for solving symmetric TSP based on the
  1689. branch-and-cut method was included in the package.
  1690. * glpdmp.h, glpdmp.c
  1691. A new, re-enterable version of routines for managing dynamic
  1692. memory pools was included in the package.
  1693. * glpavl.h, glpavl.c
  1694. A new, re-enterable version of routines for managing AVL search
  1695. trees was included in the package.
  1696. * glplib.h, glplib2.c
  1697. Two new low-level routines ufopen and ufclose were included in
  1698. the package.
  1699. * glplpx.h, glplpx7.c
  1700. The following new api routines were added: lpx_eval_activity,
  1701. lpx_eval_red_cost, lpx_reduce_form, lpx_mixed_gomory.
  1702. * glptsp.h, glptsp.c
  1703. A module for reading TSP data using TSPLIB format was included
  1704. in the package.
  1705. Mon Jul 15 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1706. * GLPK 3.2 has been released.
  1707. * glplpx.h, glplpx1.c, glplpx2.c
  1708. The identifier 'class' (used as a member name in the structure
  1709. LPX and as an argument name in the routine lpx_set_class) was
  1710. changed to 'clss' in order to avoid conflicts with C++ reserved
  1711. words.
  1712. * glpk.h, glplpx.h, glplpx1.c, glplpx2.c, glplpx6a.c,
  1713. * glplpx6b.c, glplpx6c.c, glplpx7.c, glplpx8.c
  1714. The following new api routines were added: lpx_set_obj_name,
  1715. lpx_get_obj_name, lpx_get_row_mark, lpx_get_col_mark,
  1716. lpx_transform_row, lpx_transform_col, lpx_prim_ratio_test,
  1717. lpx_dual_ratio_test, lpx_interior, lpx_get_ips_stat,
  1718. lpx_get_ips_row, lpx_get_ips_col, lpx_get_ips_obj, lpx_read_lpm,
  1719. lpx_write_mps, lpx_print_ips.
  1720. * glpsol.c
  1721. The solver was completely re-programmed using new api routines.
  1722. * lang.latex, lang.dvi, lang.ps
  1723. New edition of the document "GLPK: Modeling Language GLPK/L"
  1724. was included in the distribution.
  1725. * refman.latex, refman.dvi, refman.ps
  1726. New edition of the document "GLPK: Reference Manual" (which
  1727. contains descriptions of all new api routines) was included in
  1728. the distribution.
  1729. * glpapi.h, glpapi1.c, glpapi2.c, glpapi3.c, glpapi4.c
  1730. These files (which contain old api routines) were removed from
  1731. the package.
  1732. * glpipm1.c, glpipm2.c
  1733. The file glpipm1.c was renamed to glpipm.c. The file glpipm2.c
  1734. was used only by old api routines and therefore was removed from
  1735. the package.
  1736. * language.texinfo
  1737. Old version of the document "GLPK: Modeling Language GLPK/L" was
  1738. removed from the distribution.
  1739. Mon May 27 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1740. * GLPK 3.1 has been released.
  1741. * glplpx.h, glplpx1.c, glplpx2.c, glplpx3.c, glplpx4.c,
  1742. * glplpx5.c, glplpx6.c, glplpx7.c, glplpx8.c
  1743. A preliminary implementation of new API routines was completed.
  1744. * refman.latex, refman.dvi, refman.ps
  1745. A draft edition of the document "GLPK Reference Manual", which
  1746. describes new API routines, was included.
  1747. * glplib3.c
  1748. A bug in measuring long time intervals was fixed up.
  1749. * glprsm3.c
  1750. This module contains some obsolete routines not longer used and
  1751. therefore it was removed from the package (into the subdirectory
  1752. 'oldsrc').
  1753. * glprsm.h
  1754. Some declarations related to the module 'glprsm3.c' (see above)
  1755. were removed.
  1756. * guide.texinfo
  1757. The document "GLPK User's Guide" describing old API routines was
  1758. removed from the package (into the subdirectory 'oldsrc').
  1759. * newapi.txt
  1760. The document "New GLPK API Routines" was removed at all, because
  1761. it is superseded by the new reference manual (see above).
  1762. Mon May 13 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1763. * GLPK 3.0.8 has been released.
  1764. * glplpx.h, glplpx1.c, glplpx2.c, glplpx3.c, glplpx4.c,
  1765. * glplpx5.c, glplpx6.c, glplpx7.c
  1766. A preliminary (currently incomplete) implementation of new api
  1767. routines was included.
  1768. * sample/newsamp.c
  1769. A sample program for the new api routines was included.
  1770. * newapi.txt
  1771. A draft of the document "New GLPK API Routines" was included.
  1772. * glpapi2.c, glpapi5.c, glpapi6.c
  1773. These modules (which contain the api routines glp_call_rsm1,
  1774. glp_simplex1, glp_pivot_in, glp_pivot_out) were removed from the
  1775. package (to the subdirectory 'oldsrc') since these routines are
  1776. functionally superseded by the new api routines.
  1777. * glpk.h, glpapi2.c, glpapi3.c, glpapi4.c
  1778. The api routines glp_simplex2, glp_call_ipm1, glp_call_bbm1 were
  1779. renamed to glp_simplex, glp_interior, glp_integer, respectively.
  1780. * sample/glpsol.c
  1781. Some command-line options (which got obsolete due to the recent
  1782. changes in api) were excluded.
  1783. * doc/guide.texinfo
  1784. New edition of the document "GLPK User's Guide" was included in
  1785. the distribution to reflect the changes in some api routines.
  1786. * doc/libref.texinfo
  1787. This document was removed from the package (to the subdirectory
  1788. 'oldsrc') since it describes the library routines, most of which
  1789. got obsolete and no longer used.
  1790. * Makefile.in
  1791. A minor bug was fixed up due to bug report from Hans Schwengeler
  1792. <Hans.Schwengeler@unibas.ch>.
  1793. Mon Apr 22 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1794. * GLPK 3.0.7 has been released.
  1795. * glpduff.h, glpduff.c, glpspx.h, glpspx1.c, glpspx2.c,
  1796. * glpapi7.c
  1797. These modules were replaced by a new implementation of the
  1798. simplex method and therefore they were removed from the package
  1799. (however they still can be found in the subdirectory 'oldsrc').
  1800. * glprsm1.c
  1801. The routine crash_aa was replaced by a new implementation and
  1802. therefore it was removed from the file 'glprsm1.c'.
  1803. * glplpx.h, glplpx.c, glpspx.h, glpspx1.c, glpspx2.c, glpspx3.c,
  1804. * glpspx4.c, glpapi7.c
  1805. New (currently incomplete) implementation of the simplex method
  1806. components was included in the package.
  1807. Thu Mar 28 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1808. * GLPK 3.0.6 has been released.
  1809. * glpluf.h, glpluf.c, glpinv.h, glpinv.c
  1810. New version of LU-factorization and basis maintenance routines
  1811. (based on Forrest-Tomlin updating technique) was implemented.
  1812. * glpeta.h, glpeta.c, glpfhv.h, glpfhv.c, glpgel.h, glpgel.c,
  1813. * glppfi.h, glppfi.c, glprfi.h, glprfi.c
  1814. These routines implement some other forms of the basis matrix.
  1815. Now they became obsolete being functionally superseded by the
  1816. new version of basis maintenance routines (see above) and were
  1817. removed from the package (however they still can be found in the
  1818. subdirectory 'oldsrc').
  1819. * glpbbm.c, glprsm.h, glprsm1.h, glprsm2.h, glpspx.h, glpspx2.c,
  1820. * glprsm2.c, glpsol.c
  1821. Necessary changes were made in order to use the new version of
  1822. basis maintenance routines.
  1823. Tue Jan 29 12:00:00 2002 Andrew Makhorin <mao@mai2.rcnet.ru>
  1824. * GLPK 3.0.5 has been released.
  1825. Structure of the package was re-organized in order to simplify
  1826. its maintenance.
  1827. * doc/guide.texinfo
  1828. New edition of the document "GLPK User's Guide" was included in
  1829. the distribution. Now the document includes descriptions of some
  1830. additional API routines recently added to the package.
  1831. * doc/newapi.txt
  1832. The document "Additional GLPK API Routines" was removed from the
  1833. distribution, because the corresponding material was included in
  1834. the user's guide (see above).
  1835. Mon Dec 10 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1836. * GLPK 3.0.4 has been released.
  1837. * glpspx.h, glpspx1.c, glpspx2.c, glpapi/glp_simplex2.h
  1838. A new, more efficient version of the two-phase primal simplex
  1839. method was implemented (advanced initial basis, projected
  1840. steepest edge, recursive computations of solution components).
  1841. * glpapi/glp_call_bbm1.c
  1842. Now LP relaxation can be solved either using rsm1_driver(), or
  1843. using glp_simplex2(). The choice is controlled by the parameter
  1844. 'meth' (a member of struct bbm1).
  1845. * sample/glpsol.c
  1846. The new implementation of the simplex method is now used by
  1847. default. The old version is available via --old-sim option.
  1848. * glpmat/gm_scaling.c
  1849. Now this routine displays only two lines: an initial "quality"
  1850. and a final "quality".
  1851. * glplp/prepro_lp.c
  1852. Identifiers 'fmin' and 'fmax' renamed to 'f_min' and 'f_max' in
  1853. order to avoid conflict with <math.h>. The bug was fixed due to
  1854. report provided by Sami Farin <sfarin@ratol.fi>.
  1855. Wed Oct 03 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1856. * GLPK 3.0.3 has been released.
  1857. * glprsm/harris_row.c, glprsm/harris_col.c
  1858. The relative tolerance used on the first pass of the two-pass
  1859. ratio test was replaced by the absolute tolerance.
  1860. * glprsm/rsm_primal.c, glprsm/rsm_feas.c, glprsm/rsm_dual.c
  1861. The absolute tolerance passed to the two-pass ratio test routine
  1862. was decaresed (for both primal and dual simplex).
  1863. These changes were made in order to improve numerical stability
  1864. of the simplex method.
  1865. * glprsm/glp_call_rsm1.c, glprsm/glp_call_bbm1.c,
  1866. * glprsm/glp_simplex1, glprsm/glp_pivoting.c
  1867. Default form of the inverse was changed from RFI to AFI.
  1868. Mon Sep 24 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1869. * GLPK 3.0.2 has been released.
  1870. * glpfhv.h, glpfhv.c
  1871. New version of the basis maintaining routines was implemented.
  1872. These routines, which are based on so called FHV-factorization
  1873. (a variety of LU-factorization) and Gustavson's data structures,
  1874. perform the main operations on the basis matrix faster at the
  1875. expense of some worsening numerical accuracy.
  1876. * glprsm.h, glprsm/afi.c
  1877. The routines, which implement AFI (Advanced Form of the
  1878. Inverse) based on FHV-factorization, were added to the package.
  1879. This new form is available via the parameter form = 3 (on API
  1880. level) or via the option --afi (in GLPSOL solver).
  1881. * EFI was renamed to PFI
  1882. In order to correct terminology the acronym EFI (Elimination
  1883. Form of the Inverse) was replaced by PFI (Product Form of the
  1884. Inverse) everywhere in the source code and the documentation.
  1885. * glpset/umalloc.c, glpset/ucalloc.c
  1886. * glpset/get_atom.c, glpset/get_atomv.c
  1887. These memory management routines were changed in order *not* to
  1888. clear allocated memory blocks by binary zeros.
  1889. Wed Aug 01 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1890. * GLPK 3.0.1 has been released.
  1891. * glpapi/old_api.c, glplp/extract_lp.c, store_lpsol.c
  1892. Old API routines were deleted from the package.
  1893. * include/glpk.h, include/glpapi.h, include/glplp.h
  1894. Specifications of old API routines and data structures were
  1895. removed from the headers.
  1896. * sample/glpsol.c
  1897. New version of the stand-alone solver GLPSOL that now uses new
  1898. API routines was implemented.
  1899. * glpapi/glp_set_row_fctr.c, glpapi/glp_set_col_fctr.c,
  1900. * glpapi/glp_get_row_fctr.c, glpapi/glp_get_col_fctr.c,
  1901. * glpapi/glp_scale_prob.c
  1902. Scaling routines were added.
  1903. * glpapi/glp_write_mps.c
  1904. The routine for writing problem data in MPS format was added.
  1905. * glpapi/glp_simplex1.c
  1906. Comprehensive driver to the simplex method was added.
  1907. * glpapi/glp_pivoting.c
  1908. The routines glp_pivot_in() and glp_pivot_out() intended for
  1909. basis maintaining were added.
  1910. * glprsm/create_rsm.c, glprsm/delete_rsm.c, glprsm/scale_rsm.c,
  1911. * glprsm/build_basis.c
  1912. Additional low level routines related to the simplex method
  1913. were added.
  1914. * glpk.h, glpapi.h, glprsm.h
  1915. Additional specifications for new routines and data structures
  1916. were added.
  1917. * sample/lpglpk30.c
  1918. A non-trivial example was added. It allows using GLPK as a base
  1919. LP solver for Concorde, a program for solving Traveling Salesman
  1920. Problem (TSP). For details see comments in 'lpglpk30.c'.
  1921. * doc/newapi.txt
  1922. The document "Additional GLPK API Routines" that describes some
  1923. new API routines was included.
  1924. Thu Jul 19 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1925. * GLPK 3.0 has been released.
  1926. Now GLPK is provided with new API, which is intended for using
  1927. the package in more complex algorithmic schemes.
  1928. * glpapi/old_api.c
  1929. All routines related to old API were gathered in one file named
  1930. 'old_api.c'.
  1931. * glpapi/*.c
  1932. These routines that implement new API were added to the package.
  1933. * include/glpk.h, include/glpapi.h
  1934. Specifications of new API routines and data structures were
  1935. added to these headers. Specifications of old API routines and
  1936. data structures were locked by #ifdef GLP_OLD_API directive.
  1937. * doc/guide.texinfo
  1938. New edition of the document "GLPK User's Guide" that correspond
  1939. to new API was included.
  1940. Thu Jun 14 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1941. * GLPK 2.4.1 has been released.
  1942. * doc/glpk_ml.texinfo
  1943. The new document "Modeling Language GLPK/L" was included.
  1944. * doc/glpk_ug.texinfo
  1945. New edition of the document "GLPK User's Guide" was included.
  1946. * doc/language.txt
  1947. The preliminary document "GLPK/L Modeling Language: A Brief
  1948. description" was removed from the distribution, because it has
  1949. been replaced by the new document "Modeling Language GLPK/L".
  1950. * glplang/l_spar.c
  1951. The routine comparison() was re-programmed in order to
  1952. implement the relation operation as specified in the language
  1953. description.
  1954. * glpmip.h, glpmip/*.c
  1955. The partition 'glpmip' was renamed to 'glpbbm'.
  1956. Thu May 10 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1957. * GLPK 2.4 has been released.
  1958. Now GLPK includes an implementation of a preliminary version of
  1959. the GLPK/L modeling language.
  1960. * glplang.h, glplang/*.c
  1961. The header 'glplang.h' and a set of routines that implements
  1962. the GLPK/L language processor (the partition 'glplang') were
  1963. added to the package.
  1964. * doc/language.txt
  1965. The document "GLPK/L Modeling Language: A Brief Description
  1966. (Supplement to GLPK User's Guide)" in plain text format was
  1967. included in the package (see the file 'language.txt' in the
  1968. subdirectory 'doc' of the distribution).
  1969. * ex/model1.lpm, ex/model2.lpm
  1970. Two examples of model descriptions written in GLPK/L were added
  1971. to the package.
  1972. * sample/glpsol.c
  1973. This program was modified in order: a) to allow processing
  1974. model description written in GLPK/L; b) to allow solving pure
  1975. LP problem using the interior point method.
  1976. * sample/glpipm.c
  1977. This program was removed from the package, because its function
  1978. was passed to the GLPSOL solver.
  1979. * Makefile.in
  1980. This file was changed in order to install the GLPSOL solver
  1981. executable.
  1982. Mon Apr 09 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1983. * GLPK 2.3 has been released.
  1984. * glpmip.h, glpmip/*.c
  1985. These routines (that implement the branch-and-bound method) were
  1986. re-programmed in order to improve robustness of implementation.
  1987. In particular, heuristic routines were carried out from the main
  1988. driver routine.
  1989. Additional GLPK API routines were documented.
  1990. New edition of the document "GLPK User's Guide" was included in
  1991. the package.
  1992. The preliminary document "Mixed Integer Programming Using GLPK
  1993. Version 2.2 (Supplement to GLPK User's Guide)" was removed from
  1994. the package, because this material was included in GLPK User's
  1995. Guide.
  1996. Thu Mar 15 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  1997. * GLPK 2.2 has been released.
  1998. Now GLPK includes a tentative implementation of the
  1999. branch-and-bound procedure based on the dual simplex method for
  2000. mixed integer linear programming (MIP).
  2001. The preliminary document "Mixed Integer Programming Using GLPK
  2002. Version 2.2 (Supplement to GLPK User's Guide)" was included into
  2003. the package in plain text format (see the file 'mip.txt' in the
  2004. subdirectory 'doc' of the distribution).
  2005. * glpmip.h, glpmip/*.c, glpapi/glp_integer.c
  2006. These routines (that implement the branch-and-bound method) were
  2007. added to the package.
  2008. * sample/glpsol.c
  2009. This program was modified in order to allow solving LP and MIP
  2010. problems.
  2011. * glprsm/rsm_primal.c, glprsm/rsm_dual.c, glprsm/rsm_feas.c,
  2012. * glprsm/rsm1_driver.c
  2013. These routines (which are drivers to basic components of the
  2014. revised simplex method) were added to the package.
  2015. Mon Feb 19 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  2016. * GLPK 2.1 has been released.
  2017. * glprsm.h, glprsm/*.c
  2018. These routines (that implement components of the revised simplex
  2019. method) were re-programmed and documented.
  2020. The document "GLPK Implementation of the Revised Simplex Method"
  2021. was included into the package.
  2022. Thu Jan 25 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  2023. * GLPK 2.0 has been released.
  2024. Now GLPK includes a tentative implementation of the primal-dual
  2025. interior point method for large-scale linear programming (for
  2026. more details see the file `NEWS' in the distribution). A number
  2027. of routines related to the interior point method were added to
  2028. the package.
  2029. * insist.c
  2030. The routine `insist' and the macro of the same name were
  2031. introduced into the package in order to replace the standard
  2032. macro `assert'. Some routines require the expression specified
  2033. in the `assert' macro to be evaluated, but compiling the package
  2034. with NDEBUG option prevents from that. This bug was fixed due to
  2035. bug report provided by Peter A. Huegler <phuegler@bsco.com>.
  2036. * Makefile.in
  2037. Minor bug was fixed due to a patch provided by Alexandre Oliva
  2038. <oliva@lsd.ic.unicamp.br>.
  2039. Wed Jan 10 12:00:00 2001 Andrew Makhorin <mao@mai2.rcnet.ru>
  2040. * GLPK 1.1.2 has been released.
  2041. * umalloc.c, ufree.c, create_pool.c, get_atom.c, get_atomv.c
  2042. These routines were changed in order to fix a bug due to
  2043. report provided by Andrew Hood <ajhood@fl.net.au>. Because of
  2044. this bug data alignment error occured on the Sparc computer.
  2045. Tue Dec 14 12:00:00 2000 Andrew Makhorin <mao@mai2.rcnet.ru>
  2046. * GLPK 1.1.1 has been released.
  2047. Minor bug was fixed in `Makefile.in'.
  2048. GLPK Library Reference was included.
  2049. Mon Nov 27 12:00:00 2000 Andrew Makhorin <mao@mai2.rcnet.ru>
  2050. * GLPK 1.1 has been released.
  2051. Minor changes were made in order to co-ordinate GLPK routines
  2052. and their descriptions.
  2053. GLPK User's Guide was included.
  2054. Fri Oct 20 12:00:00 2000 Andrew Makhorin <mao@mai2.rcnet.ru>
  2055. * GLPK 1.0 has been released.