Re: [eigen] Eigen2: Assert failure in QR |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Eigen2: Assert failure in QR
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Thu, 15 Jul 2010 22:55:59 +0200
- Cc: Nick Lewycky <nlewycky@xxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=0tWTs7j8HPsS5hv3HYnOvg7+cKnFZm8l8c5iSL1mnso=; b=JxhL42aIRz91aT0sAcJkhey28zZtKBrzdbE4k8d28XVahZmvbXswVF5+pEz4HZDCId tVdMY9xi6ekI6kEVM81E30scIBl/J8iIatKTc0xYUo86tSM83wyTve7G3ATcte7nypiB 0mg6va4Abxg2Rxex7VW1izAiys6rwW/zWiSQU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=PSjhJlVuB87kRVjlv1yRy2GoWkH/sWyR+5Xgd/wU+1JVRbA87tj7i9iI9nT0HFXix2 ztdgwLJfXL0mzTXUEI5Yis8olIV9dzsYuSFfvndojBf9Zb7P40rLQ2y4cpRUs77En+YK tP9I5dqyuIXSVDvbcCOIDfdF4LqvtbxIp9hfI=
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