mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Upgrade to 2.3.0, in order to resurrect freefem++.
Switch to a fork hosted at GitHub: This GitHub project is designed to provide a common maintained version of arpackpp. It is derived from the orignial package (ARPACK++ Version 1.2. by Gomes and Sorensen), which has not been actively maintained for many years. Several updates have been included in this version (some of them were previously hosted as patches at http://reuter.mit.edu/software/arpackpatch/ ). This GitHub repository is designed to collect fixes and updates (e.g. to more recent or future releases of the involved libraries). PR: 240670
This commit is contained in:
parent
387889ff9a
commit
ab2593d8b7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=512366
5 changed files with 368 additions and 348 deletions
|
@ -2,24 +2,14 @@
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTNAME= arpack++
|
PORTNAME= arpack++
|
||||||
PORTVERSION= 1.2
|
PORTVERSION= 2.3.0
|
||||||
PORTREVISION= 12
|
|
||||||
CATEGORIES= math
|
CATEGORIES= math
|
||||||
MASTER_SITES= http://www.ime.unicamp.br/%7echico/arpack++/
|
|
||||||
DISTNAME= ${PORTNAME}
|
|
||||||
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
|
||||||
|
|
||||||
PATCH_SITES= http://reuter.mit.edu/blue/software/ \
|
|
||||||
http://www.gdv.uni-hannover.de/~reuter/software/
|
|
||||||
PATCHFILES= arpack++1.2.patch.diff
|
|
||||||
PATCH_DIST_STRIP= -p1
|
|
||||||
|
|
||||||
MAINTAINER= ports@FreeBSD.org
|
MAINTAINER= ports@FreeBSD.org
|
||||||
COMMENT= ARPACK++ is an object-oriented version of the ARPACK package
|
COMMENT= ARPACK++ is an object-oriented version of the ARPACK package
|
||||||
|
|
||||||
BROKEN= unfetchable
|
LICENSE= BSD3CLAUSE
|
||||||
DEPRECATED= Unfetchable, unmaintained
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||||
EXPIRATION_DATE= 2019-10-16
|
|
||||||
|
|
||||||
LIB_DEPENDS= libarpack.so:math/arpack-ng \
|
LIB_DEPENDS= libarpack.so:math/arpack-ng \
|
||||||
libsuperlu.so:math/superlu \
|
libsuperlu.so:math/superlu \
|
||||||
|
@ -39,42 +29,44 @@ BLAS= -lblas
|
||||||
LAPACK= -llapack
|
LAPACK= -llapack
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
USE_GITHUB= yes
|
||||||
|
GH_ACCOUNT= m-reuter
|
||||||
|
GH_PROJECT= arpackpp
|
||||||
|
|
||||||
|
USES= fortran gmake localbase
|
||||||
|
|
||||||
NO_BUILD= yes
|
NO_BUILD= yes
|
||||||
REINPLACE_ARGS= -i ""
|
REINPLACE_ARGS= -i ""
|
||||||
USES= gmake
|
|
||||||
|
|
||||||
DOCS= README doc/arpackpp.ps.gz doc/bugs.txt doc/structure.txt
|
DOCS= README.md doc/README doc/arpackpp.pdf doc/structure.txt
|
||||||
|
|
||||||
OPTIONS_DEFINE= DOCS
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
||||||
|
|
||||||
post-patch:
|
pre-configure:
|
||||||
@${FIND} ${WRKSRC}/include -name "*.orig" -delete
|
${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \
|
||||||
@${FIND} ${WRKSRC}/examples -name "*.orig" -delete
|
-e "s|%%BLAS%%|${BLAS}|" \
|
||||||
@${REINPLACE_CMD} -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \
|
|
||||||
-e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile.inc
|
-e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile.inc
|
||||||
@${FIND} ${WRKSRC}/examples -name Makefile | \
|
${FIND} ${WRKSRC}/examples -name Makefile | \
|
||||||
${XARGS} ${REINPLACE_CMD} -e "s|../../../Makefile.inc|../../Makefile.inc|" \
|
${XARGS} ${REINPLACE_CMD} -e 's|$$(ARPACKPP_DIR)/examples|${EXAMPLESDIR}|'
|
||||||
-e 's|$$(ARPACKPP_DIR)/examples|${EXAMPLESDIR}|'
|
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
@${MKDIR} ${STAGEDIR}${PREFIX}/include/ARPACK++
|
@${MKDIR} ${STAGEDIR}${PREFIX}/include/ARPACK++
|
||||||
@for inc in `${LS} ${WRKSRC}/include` ; do \
|
for inc in `${LS} ${WRKSRC}/include` ; do \
|
||||||
${INSTALL_DATA} ${WRKSRC}/include/$$inc ${STAGEDIR}${PREFIX}/include/ARPACK++; \
|
${INSTALL_DATA} ${WRKSRC}/include/$$inc ${STAGEDIR}${PREFIX}/include/ARPACK++; \
|
||||||
done
|
done
|
||||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||||
.for doc in ${DOCS}
|
.for doc in ${DOCS}
|
||||||
@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
||||||
.endfor
|
.endfor
|
||||||
@${GUNZIP_CMD} ${STAGEDIR}${DOCSDIR}/arpackpp.ps.gz
|
|
||||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
|
||||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||||
@${INSTALL_DATA} ${WRKSRC}/Makefile.inc ${STAGEDIR}${EXAMPLESDIR}
|
${INSTALL_DATA} ${WRKSRC}/Makefile.inc ${STAGEDIR}${EXAMPLESDIR}
|
||||||
@${CP} -R ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
${CP} -R ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
||||||
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}."
|
||||||
|
|
||||||
.if defined(MAINTAINER_MODE)
|
.if defined(MAINTAINER_MODE)
|
||||||
test: install
|
test: install
|
||||||
for sample in `${FIND} ${EXAMPLESDIR} -name Makefile` ; do \
|
for sample in `${FIND} ${WRKSRC}/examples -name Makefile` ; do \
|
||||||
(cd `dirname $$sample` ; \
|
(cd `dirname $$sample` ; \
|
||||||
${ECHO_MSG} "============" ; \
|
${ECHO_MSG} "============" ; \
|
||||||
${ECHO_MSG} "*** Entering `pwd`" ; \
|
${ECHO_MSG} "*** Entering `pwd`" ; \
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
SHA256 (arpack++-1.2/arpack++.tar.gz) = 61e85474b70ee5b0a2b0cc5a7db7acc26131a48269f546e2b8dc3e92264523b3
|
TIMESTAMP = 1565284527
|
||||||
SIZE (arpack++-1.2/arpack++.tar.gz) = 3485328
|
SHA256 (m-reuter-arpackpp-2.3.0_GH0.tar.gz) = 288fb4cd2dd08e02ed29db579bc1278023a06415dd2f63b1fdc323c7993fcb1a
|
||||||
SHA256 (arpack++-1.2/arpack++1.2.patch.diff) = 43e2b88aa6c76a3ddc49fd0ec8fd589914bda5a1593042572f99d76ad260c93a
|
SIZE (m-reuter-arpackpp-2.3.0_GH0.tar.gz) = 4882794
|
||||||
SIZE (arpack++-1.2/arpack++1.2.patch.diff) = 309992
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
--- Makefile.inc.orig 2008-12-12 15:10:18.000000000 +0100
|
--- Makefile.inc.orig 2015-11-23 03:58:51 UTC
|
||||||
+++ Makefile.inc 2008-12-12 15:12:13.000000000 +0100
|
+++ Makefile.inc
|
||||||
@@ -1,26 +1,26 @@
|
@@ -1,26 +1,26 @@
|
||||||
-# ARPACK++ v1.2 2/18/2000
|
-# ARPACK++ v1.2 2/18/2000
|
||||||
+# ARPACK++ v1.2 2/20/2000
|
+# ARPACK++ v2.3.0 9/1/2016
|
||||||
# c++ interface to ARPACK code.
|
# c++ interface to ARPACK code.
|
||||||
# This file contains some definitions used to compile arpack++ examples
|
# This file contains some definitions used to compile arpack++ examples
|
||||||
-# with the g++ compiler under Sun Solaris.
|
-# with the g++ compiler under linux.
|
||||||
+# with the g++ compiler under FreeBSD.
|
+# with the c++ compiler under FreeBSD.
|
||||||
|
|
||||||
|
|
||||||
# Defining the machine.
|
# Defining the machine.
|
||||||
|
@ -28,53 +28,83 @@
|
||||||
-ARPACKPP_INC = $(ARPACKPP_DIR)/include
|
-ARPACKPP_INC = $(ARPACKPP_DIR)/include
|
||||||
-SUPERLU_DIR = $(ARPACKPP_INC)
|
-SUPERLU_DIR = $(ARPACKPP_INC)
|
||||||
-UMFPACK_DIR = $(ARPACKPP_INC)
|
-UMFPACK_DIR = $(ARPACKPP_INC)
|
||||||
+ARPACK_INC = /usr/local/include
|
+ARPACK_INC = %%LOCALBASE%%/include/arpack
|
||||||
+ARPACKPP_DIR = /usr/local
|
+ARPACKPP_INC = %%PREFIX%%/include/ARPACK++
|
||||||
+ARPACKPP_INC = $(ARPACKPP_DIR)/include/ARPACK++
|
+ARPACKPP_DIR = %%PREFIX%%/share/
|
||||||
+SUPERLU_DIR = /usr/local/include/superlu
|
+SUPERLU_DIR = %%LOCALBASE%%/include/superlu
|
||||||
+UMFPACK_DIR = /usr/local/include/UMFPACK
|
+UMFPACK_DIR = %%LOCALBASE%%/include/suitesparse
|
||||||
|
|
||||||
# Defining ARPACK, LAPACK, UMFPACK, SUPERLU, BLAS and FORTRAN libraries.
|
# Defining ARPACK, LAPACK, UMFPACK, SUPERLU, BLAS and FORTRAN libraries.
|
||||||
# See the arpack++ manual or the README file for directions on how to
|
# See the arpack++ manual or the README file for directions on how to
|
||||||
@@ -34,29 +35,26 @@
|
@@ -37,49 +37,48 @@ UMFPACK_DIR = $(ARPACKPP_INC)
|
||||||
# Other libraries should be defined if the user intends to compile
|
ARPACK_LIB = -larpack
|
||||||
# arpack++ on another environment.
|
LAPACK_LIB = -llapack
|
||||||
|
SUPERLU_LIB = -lsuperlu
|
||||||
-ARPACK_LIB = -larpack
|
|
||||||
-LAPACK_LIB = -llapack
|
|
||||||
-UMFPACK_LIB = #-lumfpack
|
|
||||||
-SUPERLU_LIB = /usr/lib/libsuperlu.a
|
|
||||||
-BLAS_LIB = -lblas
|
-BLAS_LIB = -lblas
|
||||||
-FORTRAN_LIBS = -lg2c
|
+BLAS_LIB = %%BLAS%%
|
||||||
+ARPACK_LIB = /usr/local/lib/libarpack.a
|
FORTRAN_LIBS = -lgfortran
|
||||||
+LAPACK_LIB = /usr/local/lib/liblapack.a
|
|
||||||
+UMFPACK_LIB = /usr/local/lib/libumfpack.a
|
# SuiteSparse contains the UMFPACK and CHOLMOD code. To link examples against
|
||||||
+SUPERLU_LIB = /usr/local/lib/libsuperlu.so
|
# these, set the SUITESPARSE_DIR to point to your installation:
|
||||||
+BLAS_LIB = /usr/local/lib/libf77blas.a /usr/local/lib/libatlas.a
|
-SUITESPARSE_DIR = $(ARPACKPP_DIR)/../SuiteSparse
|
||||||
+FORTRAN_LIBS = -L/usr/local/lib/gcc-4.2.5 -lgfortran
|
+SUITESPARSE_DIR = %%LOCALBASE%%/include/suitesparse
|
||||||
|
|
||||||
|
-UMFPACK_LIB = $(SUITESPARSE_DIR)/UMFPACK/Lib/libumfpack.a \
|
||||||
|
- $(SUITESPARSE_DIR)/CHOLMOD/Lib/libcholmod.a \
|
||||||
|
- $(SUITESPARSE_DIR)/COLAMD/Lib/libcolamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/CCOLAMD/Lib/libccolamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/metis-4.0/libmetis.a \
|
||||||
|
- $(SUITESPARSE_DIR)/CAMD/Lib/libcamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/AMD/Lib/libamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/SuiteSparse_config/libsuitesparseconfig.a
|
||||||
|
+UMFPACK_LIB = -lumfpack \
|
||||||
|
+ -lcholmod \
|
||||||
|
+ -lcolamd \
|
||||||
|
+ -lccolamd \
|
||||||
|
+ -lmetis \
|
||||||
|
+ -lcamd \
|
||||||
|
+ -lamd \
|
||||||
|
+ -lsuitesparseconfig
|
||||||
|
|
||||||
|
-CHOLMOD_LIB = $(SUITESPARSE_DIR)/CHOLMOD/Lib/libcholmod.a \
|
||||||
|
- $(SUITESPARSE_DIR)/COLAMD/Lib/libcolamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/CCOLAMD/Lib/libccolamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/metis-4.0/libmetis.a \
|
||||||
|
- $(SUITESPARSE_DIR)/CAMD/Lib/libcamd.a \
|
||||||
|
- $(SUITESPARSE_DIR)/AMD/Lib/libamd.a \
|
||||||
|
+CHOLMOD_LIB = -lcholmod \
|
||||||
|
+ -lcolamd \
|
||||||
|
+ -lccolamd \
|
||||||
|
+ -lmetis \
|
||||||
|
+ -lcamd \
|
||||||
|
+ -lamd
|
||||||
|
|
||||||
|
# For cholmod need additional headers:
|
||||||
|
-CHOLMOD_INC = -I$(SUITESPARSE_DIR)/CHOLMOD/Include -I$(SUITESPARSE_DIR)/SuiteSparse_config
|
||||||
|
+CHOLMOD_INC = -I$(SUITESPARSE_DIR)
|
||||||
|
|
||||||
|
|
||||||
# Defining g++ flags and directories.
|
# Defining g++ flags and directories.
|
||||||
|
|
||||||
-# CPP_WARNINGS = -fpermissive
|
# CPP_WARNINGS = -fpermissive
|
||||||
-CPP_WARNINGS = -Wall -ansi -pedantic-errors
|
-CPP_WARNINGS = -Wall -ansi -pedantic-errors
|
||||||
|
+#CPP_WARNINGS = -Wall -ansi -pedantic-errors
|
||||||
+CPP_WARNINGS = -Wno-deprecated
|
+CPP_WARNINGS = -Wno-deprecated
|
||||||
CPP_DEBUG = -g
|
CPP_DEBUG = -g
|
||||||
-CPP_OPTIM = -O
|
CPP_OPTIM = -O
|
||||||
-CPP_LIBS =
|
-CPP_LIBS =
|
||||||
-CPP_INC =
|
|
||||||
+#CPP_OPTIM = -O
|
|
||||||
+CPP_LIBS = -lm
|
+CPP_LIBS = -lm
|
||||||
+CPP_INC = /usr/local/include
|
CPP_INC =
|
||||||
|
|
||||||
-CPP_FLAGS = $(CPP_DEBUG) -D$(PLAT) -I$(ARPACKPP_INC) -I$(CPP_INC) \
|
-CPP_FLAGS = $(CPP_DEBUG) -D$(PLAT) -I$(ARPACKPP_INC) -I$(CPP_INC) \
|
||||||
- $(CPP_WARNINGS)
|
- $(CPP_WARNINGS)
|
||||||
+CPP_FLAGS = $(CXXFLAGS) $(CPP_WARNINGS) -D$(PLAT) -I$(ARPACKPP_INC) -I$(CPP_INC)
|
+CPP_FLAGS = $(CXXFLAGS) $(CPP_WARNINGS) -D$(PLAT) -I$(ARPACKPP_INC) $(FCFLAGS)
|
||||||
|
|
||||||
# Putting all libraries together.
|
# Putting all libraries together.
|
||||||
|
|
||||||
-ALL_LIBS = $(CPP_LIBS) $(ARPACK_LIB) $(LAPACK_LIB) \
|
-ALL_LIBS = $(CPP_LIBS) $(ARPACK_LIB) \
|
||||||
- $(BLAS_LIB) $(FORTRAN_LIBS)
|
- $(BLAS_LIB) $(LAPACK_LIB) $(FORTRAN_LIBS)
|
||||||
+ALL_LIBS = $(ARPACK_LIB) $(LAPACK_LIB) $(BLAS_LIB) $(FORTRAN_LIBS) $(CPP_LIBS)
|
+ALL_LIBS = $(LDFLAGS) $(ARPACK_LIB) $(LAPACK_LIB) $(BLAS_LIB) $(FORTRAN_LIBS) $(CPP_LIBS)
|
||||||
|
|
||||||
# defining paths.
|
# defining paths.
|
||||||
|
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
--- include/arlutil.h.orig Thu Jul 31 22:32:42 1997
|
|
||||||
+++ include/arlutil.h Mon Oct 20 00:09:43 2003
|
|
||||||
@@ -12,7 +12,7 @@
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
-#include <malloc.h>
|
|
||||||
+#include <stdlib.h>
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
/* Macros */
|
|
|
@ -9,8 +9,12 @@ include/ARPACK++/arbsmat.h
|
||||||
include/ARPACK++/arbsnsym.h
|
include/ARPACK++/arbsnsym.h
|
||||||
include/ARPACK++/arbspen.h
|
include/ARPACK++/arbspen.h
|
||||||
include/ARPACK++/arbssym.h
|
include/ARPACK++/arbssym.h
|
||||||
|
include/ARPACK++/arcgsym.h
|
||||||
include/ARPACK++/arch.h
|
include/ARPACK++/arch.h
|
||||||
include/ARPACK++/arcomp.h
|
include/ARPACK++/arcomp.h
|
||||||
|
include/ARPACK++/arcsmat.h
|
||||||
|
include/ARPACK++/arcspen.h
|
||||||
|
include/ARPACK++/arcssym.h
|
||||||
include/ARPACK++/ardfmat.h
|
include/ARPACK++/ardfmat.h
|
||||||
include/ARPACK++/ardgcomp.h
|
include/ARPACK++/ardgcomp.h
|
||||||
include/ARPACK++/ardgnsym.h
|
include/ARPACK++/ardgnsym.h
|
||||||
|
@ -71,6 +75,7 @@ include/ARPACK++/blas1c.h
|
||||||
include/ARPACK++/blas1f.h
|
include/ARPACK++/blas1f.h
|
||||||
include/ARPACK++/caupp.h
|
include/ARPACK++/caupp.h
|
||||||
include/ARPACK++/ceupp.h
|
include/ARPACK++/ceupp.h
|
||||||
|
include/ARPACK++/cholmodc.h
|
||||||
include/ARPACK++/debug.h
|
include/ARPACK++/debug.h
|
||||||
include/ARPACK++/lapackc.h
|
include/ARPACK++/lapackc.h
|
||||||
include/ARPACK++/lapackf.h
|
include/ARPACK++/lapackf.h
|
||||||
|
@ -80,275 +85,280 @@ include/ARPACK++/saupp.h
|
||||||
include/ARPACK++/seupp.h
|
include/ARPACK++/seupp.h
|
||||||
include/ARPACK++/superluc.h
|
include/ARPACK++/superluc.h
|
||||||
include/ARPACK++/umfpackc.h
|
include/ARPACK++/umfpackc.h
|
||||||
include/ARPACK++/umfpackf.h
|
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/arpackpp.ps
|
%%PORTDOCS%%%%DOCSDIR%%/README.md
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/bugs.txt
|
%%PORTDOCS%%%%DOCSDIR%%/arpackpp.pdf
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/structure.txt
|
%%PORTDOCS%%%%DOCSDIR%%/structure.txt
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/Makefile.inc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.inc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/areig.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/areig.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/acompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/acompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/acompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/acompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/acompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/acompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/acompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/acompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/complex/acompsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/complex/acompsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/ansymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/ansymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/nonsym/simple.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/nonsym/simple.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymgbkl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymgcay.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/areig/sym/asymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/areig/sym/asymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/bcompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/bcompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/bcompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/bcompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/bcompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/bcompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/complex/bcompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/complex/bcompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bnsymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bnsymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bnsymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bnsymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bnsymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bnsymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bnsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bnsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bnsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bnsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/nonsym/bsvd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/nonsym/bsvd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymgbkl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymgcay.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/band/sym/bsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/band/sym/bsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/A.mat
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/dcompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/csymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/dcompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/csymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/dcompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/csymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/complex/dcompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/cholmod/sym/csymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/dcompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/dcompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/dcompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dnsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/complex/dcompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dnsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dsvd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/dsvd2.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/nonsym/matrix.dat.gz
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dnsymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dnsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dnsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dsvd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/dsvd2.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/nonsym/matrix.dat.gz
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/dense/sym/dsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymgbkl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymgcay.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/hcompgen.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/hcompstd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/mhd1280a.cua.gz
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/complex/mhd1280b.cua.gz
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dense/sym/dsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/hnsymgen.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/hcompgen.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/hnsymstd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/hcompstd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/mhd416a.rua
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/mhd1280a.cua.gz
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/nonsym/mhd416b.rua
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/complex/mhd1280b.cua.gz
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/hsymgen.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/hnsymgen.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/hsymstd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/hnsymstd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/lund_a.rsa
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/mhd416a.rua
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/harwell/sym/lund_b.rsa
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/nonsym/mhd416b.rua
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cgenprba.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cgenprbb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/hsymgen.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/hsymstd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/lund_a.rsa
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/harwell/sym/lund_b.rsa
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cgenprba.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/complex/cmatrixf.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cgenprbb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/matprod.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprba.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprbb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprbc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/complex/cmatrixf.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/matprod.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprba.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprbb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixf.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/ngenprbc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixv.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/sgenprba.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/sgenprbb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/smatrixa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/smatrixb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/smatrixc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixf.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matprod/sym/smatrixd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/nonsym/nmatrixv.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/sgenprba.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/sgenprbb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/smatrixa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/smatrixb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/smatrixc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matprod/sym/smatrixd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/bcmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxf.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/complex/lcompsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/dcmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/lcmatrxf.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxw.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/complex/lcompsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxw.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/bnmatrxw.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxe.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxf.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/dnmatrxw.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxv.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxw.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lnsymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/nonsym/lsvdsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxe.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxf.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxv.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnmatrxw.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lnsymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/nonsym/lsvdsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxa.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxb.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxc.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/bsmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxd.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/matrices/sym/lsymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/dsmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxa.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxb.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxc.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compgsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/lsmatrxd.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/matrices/sym/lsymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/complex/compsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compgsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymgsci.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymgscr.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/complex/compsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymgsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymgsci.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/nsymvsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymgscr.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/nonsym/svd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/simple/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymgsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/simple/symsimp.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symgbklg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/nsymvsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symgcayl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/nonsym/svd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/simple/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symgshft.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/simple/symsimp.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symgsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symshft.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symgbklg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/product/sym/symsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symgcayl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symgshft.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symgsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompgsl.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symshft.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/product/sym/symsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/complex/rcompsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompgsl.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsl.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/complex/rcompsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymvsl.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/nonsym/rsvd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymgsl.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rnsymvsl.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/nonsym/rsvd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymgsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymgbkl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/reverse/sym/rsymsol.h
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymgcay.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/lcompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymgsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/lcompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/lcompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/complex/lcompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reverse/sym/rsymsol.h
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/lcompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/lcompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/lcompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/complex/lcompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lsvd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/nonsym/lsvd2.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lnsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lsvd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/nonsym/lsvd2.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/superlu/sym/lsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymgbkl.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymgcay.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/ucompgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymgreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/ucompgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymgshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/ucompreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/complex/ucompshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/superlu/sym/lsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgre.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/ucompgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgsc.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/ucompgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgsh.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/ucompreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/complex/ucompshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/nonsym/usvd.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/README
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/Makefile
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgre.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/README
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgsc.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymgbkl.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymgsh.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymgcay.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymreg.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymgreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/unsymshf.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymgshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/nonsym/usvd.cc
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymreg.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/Makefile
|
||||||
%%PORTDOCS%%%%EXAMPLESDIR%%/umfpack/sym/usymshf.cc
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/README
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymgbkl.cc
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymgcay.cc
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymgreg.cc
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymgshf.cc
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymreg.cc
|
||||||
|
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/umfpack/sym/usymshf.cc
|
||||||
|
|
Loading…
Add table
Reference in a new issue