[eigen] Nullary test in fab6e2c5ce0e |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Nullary test in fab6e2c5ce0e
- From: Carlos Becker <carlosbecker@xxxxxxxxx>
- Date: Mon, 26 Apr 2010 00:10:45 +0200
- Cc: Jitse Niesen <jitse@xxxxxxxxxxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:cc:content-type; bh=SYrrXpD6WZO7yAoFmbYi5Fw0DIX2QFjakbPm2Uy16YY=; b=QOTGUZ0oiTIv32nEGh8T+aBYVVT7crjIH+Uq+fFn/sTSVKEnhUcnGQNVB5iyC1ZY+e c0BsQzov9okXsa0Ho4oew8u3czaa83bzg5I0uoaFgyBQt+0HGttRF6FyKb1BJEMg61Od Ox4jQRO33V0Yx3r98U0mSSHH96FFGXKxb0bUo=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:cc:content-type; b=W1Txu4yFx6eyWL0oISKwAaxityNu9S5veJLAnklapKeyIVoWeBm2Fkw2iETfmZfa4V SBojsgNtH8iQJW8/9riDT37p6mDTYffHaGOqiK4E7pgaSsgDsnf54QmDqFTLfLomxfdG du7JUKVRyCi5TJAK9w6nHCyRpcmf9ogdD4Zyk=
Hi everyone. This is my first post to the list, so first thanks to all the Eigen developers for developing this amazing library.
I was talking with Jacob (bjacob) in the IRC channel and ran the check tests on the last dev branch and got some errors that Jacob did not get on his computer.
One of them was already fixed but there is still one pending, and Jacob told me to post this message.
So, enough introduction: the problem is in nullary.cpp, line 90, namely:
VERIFY( (row_vector-col_vector.transpose()).norm() < 1e-10 );
I modified the cpp file to show the value of the norm() and got (showing different runs below):
(row_vector-col_vector.transpose()).norm() = 3.05176e-05
(row_vector-col_vector.transpose()).norm() = 0.000119118
(row_vector-col_vector.transpose()).norm() = 1.57031e-05
Problems are in nullary_7 and nullary_8 when ran on the automatic check.
So, as Jacob pointed out, is this a bug in the current dev branch or should this condition be loosened?
Best regards,
Carlos