-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove matrix utility file use cmlibs.maths 0.6.2 instead. #261
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One minor fix in comment, otherwise approved.
tests/test_gastrointestinaltract1.py
Outdated
@@ -113,7 +113,7 @@ def test_gastrointestinaltract1(self): | |||
self.assertAlmostEqual(surfaceArea, 280350.6462177311, delta=1.0E-6) | |||
result, volume = volumeField.evaluateReal(fieldcache, 1) | |||
self.assertEqual(result, RESULT_OK) | |||
self.assertAlmostEqual(volume, 598505.4701647629, delta=1.0E-6) | |||
self.assertAlmostEqual(volume, 598505.4701647585, delta=1.0E-6) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That delta is way too low for the magnitude of the value; better to set it to e.g. 1.0E-3.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.