Changeset 788 in Sophya for trunk/SophyaExt/LinAlg
- Timestamp:
- Mar 20, 2000, 7:23:27 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaExt/LinAlg/intflapack.cc
r775 r788 17 17 if ( aa.SizeX() != aa.SizeY()) throw(SzMismatchError("rztest_lapack(TMatrix<r_4> A Not a square Matrix")); 18 18 if ( bb.NbDimensions() != 2 ) throw(SzMismatchError("rztest_lapack(TMatrix<r_4> A Not a Matrix")); 19 if ( bb.Size Y() != aa.SizeY() ) throw(SzMismatchError("rztest_lapack(TMatrix<r_4> A <> B "));19 if ( bb.SizeX() != aa.SizeX() ) throw(SzMismatchError("rztest_lapack(TMatrix<r_4> A <> B ")); 20 20 if ( !bb.IsPacked() || !bb.IsPacked() ) 21 21 throw(SzMismatchError("rztest_lapack(TMatrix<r_4> Not packed A or B ")); 22 22 23 int_4 n = aa.Size Y();24 int_4 nrhs = bb.Size X();23 int_4 n = aa.SizeX(); 24 int_4 nrhs = bb.SizeY(); 25 25 int_4 lda = n; 26 int_4 ldb = bb.Size Y();26 int_4 ldb = bb.SizeX(); 27 27 int_4 info; 28 28 int_4* ipiv = new int_4[n];
Note:
See TracChangeset
for help on using the changeset viewer.