mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
84c1313bcc
matrices. It is built as a set of generic algorithms (mult, add, copy, sub-matrices, dense and sparse solvers ...) for any interfaced vector type or matrix type. It can be view as a glue library allowing cooperation between several vector and matrix types. However, basic sparse, dense and skyline matrix/vector types are built in Gmm++, hence it can be used as a standalone linear algebra library. Interfacing a vector or matrix type means writing "traits" objects called "linalg_traits", which describe their properties. The library offers predefined dense, sparse and skyline matrix types. WWW: http://home.gna.org/getfem/
20 lines
396 B
Makefile
20 lines
396 B
Makefile
# New ports collection makefile for: gmm++
|
|
# Date created: 2008-07-23
|
|
# Whom: Max Brazhnikov <makc@issp.ac.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gmm++
|
|
PORTVERSION= 3.0.4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://download.gna.org/getfem/stable/
|
|
DISTNAME= ${PORTNAME:S/+//g}-${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= A generic matrix template library
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
.include <bsd.port.mk>
|