From 44cb1e4802535bf8476abcdd0d2a04f87fb91f75 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 20 Jul 2010 10:32:56 +0200 Subject: [PATCH] it appears only the "on the left" case was tested --- test/product_trsolve.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/product_trsolve.cpp b/test/product_trsolve.cpp index b4b53a86f..410d2da11 100644 --- a/test/product_trsolve.cpp +++ b/test/product_trsolve.cpp @@ -45,7 +45,7 @@ template void trsolve(int size=Size,int cols enum { order = Size==1 ? RowMajor : ColMajor }; Matrix cmRhs(size,cols), ref(size,cols); - Matrix rmRhs(size,cols); + Matrix rmRhs(size,cols); cmLhs.setRandom(); cmLhs *= static_cast(0.1); cmLhs.diagonal().array() += static_cast(1); rmLhs.setRandom(); rmLhs *= static_cast(0.1); rmLhs.diagonal().array() += static_cast(1);