Re: [eigen] wrong result when not inlining (at least with vs.net) |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] wrong result when not inlining (at least with vs.net)
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Fri, 15 May 2009 10:44:05 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Lo5lvcIBQ9M+kHQCz1qQU6kVQRHjE9dEUvBEG68o45A=; b=q0UQNhjh9XIE0igpb/x8WTkY+gJ6K6opdQ1oBAuy1x/MdAqL4MtMM9tJw+0Sk1aEmW FSP4UAx3/f+EFRo7U45LKjqXcVnnuQVWNIpV9nmA5tQG3EqncHg2qM0dqS+qKMpczwds bcNbsFemPyQTvBtLAcLaDwDHoXuyEukroYmsQ=
- 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:content-transfer-encoding; b=E0Z/0xNTpODbft2dz01lArEXS4P1ugv0/gPQxP2b9oen64YCv1S1t2ihw1T5U48n3k kaC+msqnDkjnNpaFto0hQ3Lm7dyYoN+GY+Dz1f17kZWk/9ywpX+yDqlwr53igdYYixnb iJEtyASssbjoLmvhAXCBXhIY0caBgSX6FUsdc=
On Fri, May 15, 2009 at 4:33 AM, Benoit Jacob <jacob.benoit.1@xxxxxxxxx> wrote:
> 1) did msvc accept your program? you pass argv as "char*" instead of
> "char**". Just FYI, you can omit the arguments to main() if you don't
> use them.
Oooops, I forgot the brackets. At some point I decided to stick to
(int argc, char* argv[]) - but I should adapt the empty parameter
version again. Its less to type :)
> 2) instead of rowwise().sum().sum() you can do directly sum(), that's
> not only for vectors.
Good to know.
- Hauke