From 37a50fa5268d6d408c74ab2d380785ce07ec302c Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 29 Jun 2008 21:29:12 +0000 Subject: * added an in-place version of inverseProduct which might be twice faster fot small fixed size matrix * added a sparse triangular solver (sparse version of inverseProduct) * various other improvements in the Sparse module --- bench/BenchSparseUtil.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bench/BenchSparseUtil.h') diff --git a/bench/BenchSparseUtil.h b/bench/BenchSparseUtil.h index 97838f4b1..9d88148d0 100644 --- a/bench/BenchSparseUtil.h +++ b/bench/BenchSparseUtil.h @@ -64,7 +64,8 @@ void eiToGmm(const EigenSparseMatrix& src, GmmSparse& dst) #ifndef NOMTL #include -typedef mtl::compressed2D MtlSparse; +typedef mtl::compressed2D > MtlSparse; +typedef mtl::compressed2D > MtlSparseRowMajor; void eiToMtl(const EigenSparseMatrix& src, MtlSparse& dst) { mtl::matrix::inserter ins(dst); -- cgit v1.2.3