Replace toDense() by toDenseMatrix() in tests.

This commit is contained in:
Jitse Niesen
2009-11-20 12:22:46 +00:00
parent b0baf43114
commit 34be9d4537
4 changed files with 13 additions and 13 deletions

View File

@@ -27,7 +27,7 @@
#define VERIFY_TRSM(TRI,XB) { \
(XB).setRandom(); ref = (XB); \
(TRI).solveInPlace(XB); \
VERIFY_IS_APPROX((TRI).toDense() * (XB), ref); \
VERIFY_IS_APPROX((TRI).toDenseMatrix() * (XB), ref); \
}
template<typename Scalar> void trsm(int size,int cols)