add a stupid Product<A,B> expression produced by prod(a,b), and implement a first version of its evaluator

This commit is contained in:
Gael Guennebaud
2011-03-23 16:12:21 +01:00
parent cfd5c2d74e
commit 816541d82c
4 changed files with 675 additions and 547 deletions

View File

@@ -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;