Re: [eigen] Enabled move support for Matrix and Array |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Enabled move support for Matrix and Array
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Wed, 11 May 2011 16:34:53 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type; bh=JkOF/zFjjPtjAYjyH7cabX0gPf7e7a1EpPWNYnO9iJA=; b=TKXeewHcTZkUERLCPZtygnduZ+5AMkkLHAKLskpwyfu/fG9jZk3ApVDxuImlL51nvD TJaC4//0HxJpKrDuKrjjFPvhU2V2U3/O0a4wMp6ridQP0RI0o6b9T7pBWFW/dJ9MJ6iW FAEjWxczl7RxFFoxudNqyr0sUFhchBc6HFzDU=
- 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=uPFTAR0jgWK6ia71myz04PcKOqX2tpOTj+o3IeHUr30XCXe0KsLQ3F32NDnVguFVHd 4nEZ21i8rqEmsotPBXIjAnafV6MYJ0R6qr5QzB9sYDjanidAnUX/WcDPDf/iX3xzeE+b EdzOYj9fVDIkBNF/0bZPDPg5P7Kkru/NRtjAQ=
On Wed, May 11, 2011 at 4:13 PM, Benoit Jacob <jacob.benoit.1@xxxxxxxxx> wrote:
> 2011/5/11 Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>:
>> With the previous fix only a few of our unit tests are failing. The
>> strange part is that they do not fail on MSVC but only on cygwin with
>> gcc 4.3.4. I still have to investigate this.
>
> Why bother with C++0x support with GCC 4.3? Just require a newer GCC
> version for C++0x support.
I just want to be sure that it's not me. :)
It's this line which is killing me (from array.cpp in array_real(...))
VERIFY_IS_APPROX(internal::abs2(std::real(m1)) +
internal::abs2(std::imag(m1)), internal::abs2(m1));
- Hauke