summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2007-10-27 08:53:15 +0000
committerAlberto Ruiz <aruiz@um.es>2007-10-27 08:53:15 +0000
commitff177d3298f4458503e9485596559c7d74048769 (patch)
tree43f844f468ebd56c290ac59d17ed3438648ed09e /lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c
parent71320675021472b2f97191ba514c651ceb8a1617 (diff)
added doc
Diffstat (limited to 'lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c')
-rw-r--r--lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c
index cab3f5b..058232c 100644
--- a/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c
+++ b/lib/Numeric/LinearAlgebra/LAPACK/lapack-aux.c
@@ -728,6 +728,9 @@ int schur_l_R(KDMAT(a), DMAT(u), DMAT(s)) {
728} 728}
729 729
730int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)) { 730int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)) {
731 #ifdef _WIN32
732 return NOSPRTD;
733 #else
731 integer m = ar; 734 integer m = ar;
732 integer n = ac; 735 integer n = ac;
733 REQUIRES(m>=1 && n==m && ur==n && uc==n && sr==n && sc==n, BAD_SIZE); 736 REQUIRES(m>=1 && n==m && ur==n && uc==n && sr==n && sc==n, BAD_SIZE);
@@ -749,4 +752,5 @@ int schur_l_C(KCMAT(a), CMAT(u), CMAT(s)) {
749 free(BWORK); 752 free(BWORK);
750 free(WORK); 753 free(WORK);
751 OK 754 OK
755 #endif
752} 756}