The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

3454 lines
134 KiB

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