Re: [eigen] Eigen2: Assert failure in QR

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


On Thu, Jul 15, 2010 at 10:54 PM, Benoit Jacob <jacob.benoit.1@xxxxxxxxx> wrote:
>
> In these lines:
>
> -                   : int(Lhs::Flags) & (RowMajorBit|SparseBit)
> +                   : int(Lhs::Flags & (RowMajorBit|SparseBit))
>
> I would much prefer:
>
> +                   : int(Lhs::Flags) & int(RowMajorBit|SparseBit)

this is what I did when "applying" it. I hope that's fine with CLang.

gael



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/