-
Notifications
You must be signed in to change notification settings - Fork 204
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
palette/moreland: fix floating-point arithmetic error in Palette #799
Conversation
Fixes #798. Signed-off-by: Eng Zer Jun <[email protected]>
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.
Thanks for the PR.
I just have minor requests.
See below:
Reference: #799 (review) Signed-off-by: Eng Zer Jun <[email protected]>
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.
LGTM
thanks
Reference: #799 (review) Signed-off-by: Eng Zer Jun <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## master #799 +/- ##
==========================================
+ Coverage 70.78% 72.26% +1.48%
==========================================
Files 60 59 -1
Lines 5291 7353 +2062
==========================================
+ Hits 3745 5314 +1569
- Misses 1350 1852 +502
+ Partials 196 187 -9 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Thanks.
Please send a change to gonum/gonum with the commit message "A+C: add Eng Zer Jun" (please correct this if I got your name wrong) adding yourself to AUTHORS and CONTRIBUTORS.
@kortschak My name is already in the AUTHORS and CONTRIBUTORS file 😊 |
@Juneezee Ah, thanks. You show up as first time contributor here, but this is because the repo is different. Thanks for the change. |
Fixes #798.
This PR fixes a panic in the
Palette
method caused by a floating-point precision error, where the computed valuev
slightly exceeds the upper boundl.max
.Debugger screenshot
Problem
As shown in the above screenshot, we have the following values:
l.min = 0.3402859786606234
l.max = 15.322841335211892
n = 15
delta = 1.0701825254679478
i = 14
v = 15.322841335211894
(note herev
is0.000000000000002
greater thanl.max
)The expected calculation of
delta
:This confirms that
delta
is correct and has no floating-point error.Next, the expected calculation of
v
:Ideally,
v
should be exactly equal tol.max
. However, due to a small floating-point precision error of0.000000000000002
,v
becomes slightly greater thanl.max
, triggering the panic incheckRange
function:plot/palette/moreland/luminance.go
Lines 116 to 118 in 2815ea1
Solution
Use the built-in
min
function to ensurev
does not exceedl.max
. Ifv
becomes greater thanl.max
due to floating-point precision errors, it will be capped atl.max
.