480a8011c4
Some internal (non-API) routines to estimate the condition of the basis matrix were added. These routines are mainly intended to be used by the simplex-based solvers. Two open modes "a" and "ab" were added to GLPK I/O routines. Minor bug was fixed in the solver glpsol (command-line options --btf, --cbg, and --cgr didn't work properly). A serious bug was fixed in a basis factorization routine used on the dense phase. (The bug might appear only if the number of rows exceeded sqrt(2**31) ~= 46,340 and caused access violation exception because of integer overflow.) Two API routines glp_alloc and glp_realloc were documented. Translation of the document "Modeling Language GNU MathProg" to Spanish was included (in LaTeX and pdf formats).
20 lines
516 B
Makefile
20 lines
516 B
Makefile
# $NetBSD: Makefile,v 1.41 2014/08/30 11:19:52 adam Exp $
|
|
|
|
DISTNAME= glpk-4.55
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=glpk/}
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/glpk/glpk.html
|
|
COMMENT= Library for solving linear programming problems
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-gmp
|
|
TEST_TARGET= check
|
|
|
|
.include "../../devel/gmp/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|