From 816541d82c3b853c0c73b42f9e978f069afc43e1 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 23 Mar 2011 16:12:21 +0100 Subject: add a stupid Product expression produced by prod(a,b), and implement a first version of its evaluator --- test/evaluators.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/evaluators.cpp') diff --git a/test/evaluators.cpp b/test/evaluators.cpp index ea65439a3..a8eaa0fa9 100644 --- a/test/evaluators.cpp +++ b/test/evaluators.cpp @@ -69,8 +69,8 @@ void test_evaluators() copy_using_evaluator(d, (a + b).transpose()); cout << d << endl; -// copy_using_evaluator(d, (a * b).transpose()); -// cout << d << endl; + copy_using_evaluator(d, prod(a,b).transpose()); + cout << d << endl; // copy_using_evaluator(d, a.transpose() + (a.transpose() * (b+b))); // cout << d << endl; -- cgit v1.2.3