trmm is now fully working and available via TriangularView::operator*

This commit is contained in:
Gael Guennebaud
2009-07-27 11:42:54 +02:00
parent 6aba84719d
commit f95b77be62
7 changed files with 575 additions and 33 deletions

View File

@@ -85,6 +85,7 @@ template<typename Scalar> void trsm(int size,int cols)
solve_ref(rmLhs.template triangularView<UpperTriangular>(),rmRef);
VERIFY_IS_APPROX(rmRhs, rmRef);
}
void test_product_trsm()
{
for(int i = 0; i < g_repeat ; i++)