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.

2932 lines
111 KiB

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