[eigen] Re: recent improvements in the products |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
On Thu, 30 Jul 2009, Gael Guennebaud wrote:
A00.template triangularView<LowerTriangular>().template solveInPlace<OnTheRight>(A10); // bottleneck
I think that the need for the template keyword is an argument not to use
templates here. It's simpler if you could write
A00.lowerTriangularView().solveOnRightInPlace(A10);
It looks impressive what you've done (there's no shame in following Goto &
Van de Geijn). I hope to find some time soon to play with it.
Cheers,
Jitse