aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/evaluators.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-03-23 16:12:21 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-03-23 16:12:21 +0100
commit816541d82c3b853c0c73b42f9e978f069afc43e1 (patch)
treecb572e4024a9af5adf47359bb10de7296e021bb9 /test/evaluators.cpp
parentcfd5c2d74eaa4355eef8b9a9bda59e1cd6babf84 (diff)
add a stupid Product<A,B> expression produced by prod(a,b), and implement a first version of its evaluator
Diffstat (limited to 'test/evaluators.cpp')
-rw-r--r--test/evaluators.cpp4
1 files changed, 2 insertions, 2 deletions
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;