aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/bandmatrix.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-07-15 17:00:49 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-07-15 17:00:49 +0200
commitdf6561a73fcaa11249d7fe62fa661be99c0afd67 (patch)
treeaa84971e3e9073fd87d26c1f7dc176ebeee12def /test/bandmatrix.cpp
parent587029a612df2a98a545702e90dc40feb7a62d3e (diff)
change the implementation of BandMatrix to follow the BLAS/LAPACK storage scheme
Diffstat (limited to 'test/bandmatrix.cpp')
-rw-r--r--test/bandmatrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bandmatrix.cpp b/test/bandmatrix.cpp
index 96ccda2cf..69ab0ed1d 100644
--- a/test/bandmatrix.cpp
+++ b/test/bandmatrix.cpp
@@ -55,7 +55,7 @@ template<typename MatrixType> void bandmatrix(MatrixType& m)
void test_bandmatrix()
{
for(int i = 0; i < g_repeat ; i++) {
- BandMatrix<float,Dynamic,Dynamic,Dynamic> m(6,3,2);
+ BandMatrix<float,Dynamic,Dynamic,Dynamic> m(6,6,3,2);
CALL_SUBTEST( bandmatrix(m) );
}
}