From 6ff28eb3cf57aba50cf24f92aa62b764cc2b2a8b Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 22 Jun 2010 08:59:02 +0200 Subject: [PATCH] forgot to include this file in my previous commit --- test/product_large.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/product_large.cpp b/test/product_large.cpp index 0351d134c..e5f6e12aa 100644 --- a/test/product_large.cpp +++ b/test/product_large.cpp @@ -61,10 +61,8 @@ void test_product_large() std::ptrdiff_t k1 = ei_random(10,100)*16; std::ptrdiff_t m1 = ei_random(10,100)*16; std::ptrdiff_t n1 = ei_random(10,100)*16; - setBlockingSizes(k1,m1,n1); - std::ptrdiff_t k, m, n; - getBlockingSizes(k,m,n); - VERIFY(k==k1 && m==m1 && n==n1); + // only makes sure it compiles fine + computeProductBlockingSizes(k1,m1,n1); } #endif }