Port LU module to evaluators (except image() and kernel())

This commit is contained in:
Gael Guennebaud
2014-02-20 15:26:15 +01:00
parent b2e1453e1e
commit 93125e372d
3 changed files with 178 additions and 61 deletions

View File

@@ -721,7 +721,7 @@ void call_assignment_no_alias(Dst& dst, const Src& src, const Func& func)
(int(Dst::ColsAtCompileTime) == 1 && int(Src::RowsAtCompileTime) == 1))
&& int(Dst::SizeAtCompileTime) != 1
};
dst.resize(NeedToTranspose ? src.cols() : src.rows(),
NeedToTranspose ? src.rows() : src.cols());