array-matrix transpose product does not compile

Submitted by Hauke Heibel

Assigned to Hauke Heibel

Link to original bugzilla bug (#148)
Version: 3.0

Description

Created attachment 65

backtrace

The example below does not compile anymore:

#include <Eigen/Eigen>

using namespace Eigen;

int main()

{

ArrayXXf a = ArrayXXf::Random(50,50);

ArrayXXf b = ArrayXXf::Random(50,50);

MatrixXf m = a.matrix().transpose() * b.matrix();

}

I tried to bisect but failed due to other broken commits.

Attachment 65, "backtrace":

backtrace.txt

Blocking

#48 (closed)