pyglpk
October 10, 2024 ยท View on GitHub
.. image:: https://travis-ci.org/bradfordboyle/pyglpk.svg?branch=master :target: https://travis-ci.org/bradfordboyle/pyglpk .. image:: https://coveralls.io/repos/github/bradfordboyle/pyglpk/badge.svg?branch=master :target: https://coveralls.io/github/bradfordboyle/pyglpk?branch=master .. image:: https://readthedocs.org/projects/pyglpk/badge/ :target: http://pyglpk.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
Fork of T. Finley's PyGLPK module, available through pip install glpk.
You can find the documentation on https://pyglpk.readthedocs.io/
Overview
PyGLPK is a Python_ module which encapsulates the functionality of the GNU
Linear Programming Kit (GLPK_). The GLPK allows one to specify linear
programs (LPs) and mixed integer programs (MIPs), and to solve them with either
simplex, interior-point, or branch-and-bound algorithms. The goal of PyGLPK is
to give one access to all documented functionality of GLPK.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
Availability
To get the lastest version, see: https://github.com/bradfordboyle/pyglpk/.
Documentation
The HTML documentation included with the release in the directory html <html>_
contains information on building, testing, installation and documentation of all
features of the module.
Building and Installing
Building this module requires that the user have installed the GLPK_ 4.18 or
later and GMP_ libraries. The module builds and appears to work on my test
files in Python 2.4, and 2.5, with GLPK 4.18 through 4.31. Earlier versions of
Python and GLPK will not work.
Ideally, the following will work:
makemake testmake install, or perhapssudo make install
See the HTML documentation for troubleshooting information.
Bugs and Commentary
Please send information on issues of usage to Thomas Finley at tfinley@gmail.com.
.. _Python: http://www.python.org/ .. _GLPK: http://www.gnu.org/software/glpk/ .. _GMP: http://gmplib.org/