mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user