Re: [eigen] HouseholderQR bug?? |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] HouseholderQR bug??
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Mon, 26 Apr 2010 15:52:18 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=NubpmWApo4hE27PjA+AqQR0BFtQXtorQqr9G7dKrmU0=; b=agfLajryVuXST3/pw2FxZR5IcXEktzmZkW3kCCoKHOP/Jxr7Ho1/mZMu8MMrk7iHNF YkuIg7+dYGRxDr1iBSteKXLiAanU6IR8WjJ+JtV95hEmrzMTK2tnp4kpwho2/9aNOxRN qHeO8ym/VQMLam6Gg2wml8/gVunPbytisVlEU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=OZ+zTWLTox2B3pUVPx2MQtldr3Ny7IEDERm3dy2Fhjv1Fq5zibAFFJH+QjcV1Tetlt ex7qwZBjPeIqe/0fCx0868Wl6WS8hVKSfQTfE6v5M5avvss+Dd5kOrod+xzyMmTsgZv5 +wczQwzmzWMxQN7VlyDvqZGAnRm/aLShvJx9w=
I think the problem is this that since
RowMajor == 1 and DontAlign == 2
results in
Map::Options = RowMajor|DontAlign = 3
and since Aligned == 1 and Map::Options&Aligned == 1
ei_traits<Map>::IsAligned = (Map::Options&Aligned == Aligned) = true
- Hauke