From 94cc30180e5b7bec9399d796945e41245c16afeb Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 27 Jul 2009 13:50:23 +0200 Subject: compilation fixes --- test/product_trmv.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/product_trmv.cpp') diff --git a/test/product_trmv.cpp b/test/product_trmv.cpp index 876fb4388..b4d45cca2 100644 --- a/test/product_trmv.cpp +++ b/test/product_trmv.cpp @@ -24,7 +24,7 @@ #include "main.h" -template void product_triangular(const MatrixType& m) +template void trmv(const MatrixType& m) { typedef typename MatrixType::Scalar Scalar; typedef typename NumTraits::Real RealScalar; @@ -79,14 +79,14 @@ template void product_triangular(const MatrixType& m) // TODO check with sub-matrices } -void test_product_triangular() +void test_product_trmv() { for(int i = 0; i < g_repeat ; i++) { - CALL_SUBTEST( product_triangular(Matrix()) ); - CALL_SUBTEST( product_triangular(Matrix()) ); - CALL_SUBTEST( product_triangular(Matrix3d()) ); - CALL_SUBTEST( product_triangular(Matrix,23, 23>()) ); - CALL_SUBTEST( product_triangular(MatrixXcd(17,17)) ); - CALL_SUBTEST( product_triangular(Matrix(19, 19)) ); + CALL_SUBTEST( trmv(Matrix()) ); + CALL_SUBTEST( trmv(Matrix()) ); + CALL_SUBTEST( trmv(Matrix3d()) ); + CALL_SUBTEST( trmv(Matrix,23, 23>()) ); + CALL_SUBTEST( trmv(MatrixXcd(17,17)) ); + CALL_SUBTEST( trmv(Matrix(19, 19)) ); } } -- cgit v1.2.3