toon-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Toon-members] TooN Lapack_Cholesky.h


From: Gerhard Reitmayr
Subject: [Toon-members] TooN Lapack_Cholesky.h
Date: Thu, 23 Dec 2010 23:50:39 +0000

CVSROOT:        /cvsroot/toon
Module name:    TooN
Changes by:     Gerhard Reitmayr <gerhard>      10/12/23 23:50:39

Modified files:
        .              : Lapack_Cholesky.h 

Log message:
        some missing Precision arguments

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/TooN/Lapack_Cholesky.h?cvsroot=toon&r1=1.7&r2=1.8

Patches:
Index: Lapack_Cholesky.h
===================================================================
RCS file: /cvsroot/toon/TooN/Lapack_Cholesky.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- Lapack_Cholesky.h   29 Jun 2010 14:03:06 -0000      1.7
+++ Lapack_Cholesky.h   23 Dec 2010 23:50:39 -0000      1.8
@@ -120,7 +120,7 @@
                Vector<Size, Precision> backsub (const Vector<Size2, P2, B2>& 
v) const {
                SizeMismatch<Size,Size2>::test(my_cholesky.num_cols(), 
v.size());
 
-               Vector<Size> result(v);
+               Vector<Size, Precision> result(v);
                int N=my_cholesky.num_rows();
                int NRHS=1;
                int info;
@@ -159,7 +159,7 @@
        }
 
        Matrix<> get_inverse() const {
-               Matrix<Size> M(my_cholesky.num_rows(),my_cholesky.num_rows());
+               Matrix<Size, Size, Precision> 
M(my_cholesky.num_rows(),my_cholesky.num_rows());
                M=my_cholesky_lapack;
                int N = my_cholesky.num_rows();
                int info;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]