[glpk] branch master updated (70f7b02 -> 41d77be)

Sébastien Villemot sebastien at debian.org
Mon Jan 23 19:33:10 UTC 2017


This is an automated email from the git hooks/post-receive script.

sebastien pushed a change to branch master
in repository glpk.

      from  70f7b02   Changelog entry for 4.60-3.
      adds  b6aad8b   New upstream version 4.61
       new  946f54f   Merge tag 'upstream/4.61'
       new  8327ccf   d/copyright: reflect upstream changes.
       new  2b648e3   Refresh patches.
       new  642e65f   Add glp_config to symbols file.
       new  1c02bbc   d/watch: bump to format version 4.
       new  9b7a9a0   Update .gitignore.
       new  41d77be   Changelog entry for 4.61-1.

The 7 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |  10 +-
 ChangeLog                                          |  49 +++
 INSTALL                                            |  11 -
 NEWS                                               |  26 ++
 README                                             |   8 +-
 THANKS                                             |   7 +
 config.h.in                                        |   3 +
 configure                                          |  73 +++-
 configure.ac                                       |  36 +-
 debian/changelog                                   |   9 +
 debian/copyright                                   |  23 +-
 debian/libglpk40.symbols                           |   1 +
 debian/patches/no-embedded-suitesparse.patch       |   4 +-
 debian/patches/no-embedded-zlib.patch              |   4 +-
 debian/watch                                       |   2 +-
 doc/glpk.tex                                       |   4 +-
 doc/notes/dfeas.pdf                                | Bin 63866 -> 0 bytes
 doc/notes/simplex1.pdf                             | Bin 398510 -> 385190 bytes
 doc/notes/simplex2.pdf                             | Bin 250038 -> 264051 bytes
 examples/INDEX                                     |   2 +
 examples/glpsol.c                                  |  19 +-
 examples/pentomino.mod                             | 460 +++++++++++++++++++++
 examples/planarity.mod                             | 109 +++++
 .../threads/Build_Multiseed.bat                    |  23 +-
 examples/threads/Makefile                          |   5 +
 examples/threads/Makefile_VC                       |  26 ++
 examples/threads/README                            |  66 +++
 examples/threads/clustering.mod                    | 109 +++++
 examples/threads/multiseed.c                       | 259 ++++++++++++
 examples/threads/thread.h                          |  49 +++
 src/Makefile.am                                    |  12 +-
 src/Makefile.in                                    | 206 +++++----
 src/api/ckcnf.c                                    |   2 +
 src/api/cpxbas.c                                   |  10 +-
 src/api/intfeas1.c                                 |   2 +
 src/api/minisat1.c                                 |   2 +
 src/{ => api}/prob.h                               |   7 +-
 src/{glpapi01.c => api/prob1.c}                    |  15 +-
 src/{glpapi02.c => api/prob2.c}                    |   5 +-
 src/{glpapi03.c => api/prob3.c}                    |   5 +-
 src/{glpapi04.c => api/prob4.c}                    |   5 +-
 src/{glpapi05.c => api/prob5.c}                    |   5 +-
 src/api/prrngs.c                                   |   2 +
 src/api/rdcnf.c                                    |   2 +
 src/api/rdipt.c                                    |   2 +
 src/api/rdmip.c                                    |   2 +
 src/api/rdprob.c                                   |   2 +
 src/api/rdsol.c                                    |   2 +
 src/api/wrcnf.c                                    |   2 +
 src/api/wript.c                                    |   2 +
 src/api/wrmip.c                                    |   2 +
 src/api/wrprob.c                                   |   2 +
 src/api/wrsol.c                                    |   2 +
 src/cglib/cfg1.c                                   |  10 +-
 src/cglib/gmigen.c                                 |  10 +-
 src/cglib/mirgen.c                                 |  10 +-
 src/env/env.c                                      |  73 +++-
 src/env/env.h                                      |   4 +-
 src/env/tls.c                                      |  62 ++-
 src/glpapi06.c                                     |   2 +
 src/glpapi09.c                                     |   2 +
 src/glpapi12.c                                     |   4 +
 src/glpios10.c                                     |  10 +-
 src/glpios11.c                                     |  10 +-
 src/glpk.h                                         |  11 +-
 src/misc/wclique1.c                                |  10 +-
 src/simplex/spxnt.h                                |   1 +
 src/simplex/spychuzc.c                             |  14 +-
 ...LL.bat => Build_GLPK_with_VC10_stdcall_DLL.bat} |   4 +-
 w32/Makefile_VC                                    |  10 +-
 w32/Makefile_VC_DLL                                |  22 +-
 w64/makefile_VC_DLL => w32/Makefile_VC_stdcall_DLL |  25 +-
 w32/config_VC                                      |   3 +
 w64/glpk_4_60.def => w32/glpk_4_61.def             |   4 +-
 w64/glpk_4_60.def => w32/glpk_4_61_stdcall.def     |   4 +-
 w64/config_VC                                      |   3 +
 w32/glpk_4_60.def => w64/glpk_4_61.def             |   4 +-
 w64/makefile_VC                                    |  10 +-
 w64/makefile_VC_DLL                                |  22 +-
 79 files changed, 1787 insertions(+), 252 deletions(-)
 delete mode 100644 doc/notes/dfeas.pdf
 create mode 100644 examples/pentomino.mod
 create mode 100644 examples/planarity.mod
 copy w64/Build_GLPK_with_VC14.bat => examples/threads/Build_Multiseed.bat (76%)
 mode change 100755 => 100644
 create mode 100644 examples/threads/Makefile
 create mode 100644 examples/threads/Makefile_VC
 create mode 100644 examples/threads/README
 create mode 100644 examples/threads/clustering.mod
 create mode 100644 examples/threads/multiseed.c
 create mode 100644 examples/threads/thread.h
 rename src/{ => api}/prob.h (98%)
 rename src/{glpapi01.c => api/prob1.c} (99%)
 rename src/{glpapi02.c => api/prob2.c} (98%)
 rename src/{glpapi03.c => api/prob3.c} (96%)
 rename src/{glpapi04.c => api/prob4.c} (96%)
 rename src/{glpapi05.c => api/prob5.c} (96%)
 copy w32/{Build_GLPK_with_VC10_DLL.bat => Build_GLPK_with_VC10_stdcall_DLL.bat} (68%)
 copy w64/makefile_VC_DLL => w32/Makefile_VC_stdcall_DLL (89%)
 copy w64/glpk_4_60.def => w32/glpk_4_61.def (93%)
 rename w64/glpk_4_60.def => w32/glpk_4_61_stdcall.def (92%)
 rename w32/glpk_4_60.def => w64/glpk_4_61.def (93%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/glpk.git



More information about the debian-science-commits mailing list