Add concorde, a combinatorial optimization library.

PR:		19685
Submitted by:	David A. Bader <dbader@eece.unm.edu>
This commit is contained in:
Will Andrews 2000-07-04 02:38:00 +00:00
parent 0e4d21bdb8
commit ad5ea862bc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=30153
6 changed files with 50 additions and 0 deletions

View file

@ -11,6 +11,7 @@
SUBDIR += blas
SUBDIR += calc
SUBDIR += calctool
SUBDIR += concorde
SUBDIR += dcdflib
SUBDIR += eispack
SUBDIR += eval

25
math/concorde/Makefile Normal file
View file

@ -0,0 +1,25 @@
# New ports collection makefile for: concorde
# Date created: 3 July 2000
# Whom: dbader@eece.unm.edu
#
# $FreeBSD$
#
PORTNAME= concorde
PORTVERSION= 1.0
CATEGORIES= math
MASTER_SITES= ftp://ftp.caam.rice.edu/pub/software/keck/
DISTNAME= co991215
EXTRACT_SUFX= .tgz
MAINTAINER= dbader@eece.unm.edu
WRKSRC= ${WRKDIR}/concorde
GNU_CONFIGURE= yes
do-install:
${INSTALL_DATA} ${WRKSRC}/concorde.a ${PREFIX}/lib/libconcorde.a
${INSTALL_DATA} ${WRKSRC}/concorde.h ${PREFIX}/include
.include <bsd.port.mk>

1
math/concorde/distinfo Normal file
View file

@ -0,0 +1 @@
MD5 (co991215.tgz) = 30c7dcccbde91a03d66e3e715f656650

View file

@ -0,0 +1 @@
Combinatorial Optimization package

20
math/concorde/pkg-descr Normal file
View file

@ -0,0 +1,20 @@
Concorde (99.12.15 release) This is the initial full release of Concorde.
More data about Concorde is available from the Concorde page at
http://www.caam.rice.edu/keck/concorde.html.
Concorde is a computer code for the traveling salesman problem (TSP)
and some related network optimization problems. The code is written
in the ANSI C programming language and it is available for academic
research use; for other uses, contact concorde@caam.rice.edu for
licensing options.
Concorde's TSP solver has been used to obtain the optimal solutions to
all TSPLIB instances having up to 13,509 cities.
The Concorde callable library includes over 700 functions permitting
users to create specialized codes for TSP-like problems. All Concorde
functions are thread-safe for prgramming in shared-memory parallel
environments; the main TSP solver includes code for running over
networks of unix workstations.
WWW: http://www.caam.rice.edu/keck/concorde/

2
math/concorde/pkg-plist Normal file
View file

@ -0,0 +1,2 @@
lib/libconcorde.a
include/concorde.h