-
Notifications
You must be signed in to change notification settings - Fork 696
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
Allowing for small float rounding errors when calculating column widths #639
Conversation
The test case only addresses the change in column_width_calculator.rb. |
@bradediger I am curious of your thoughts on the problem and the fix here. @hbrandl and I chatted over IRC about it a bit and both agree it's not ideal. Should we thinking about using BigDecimal here? Or something else entirely? Or just stick with the fuzzy float comparison? |
I think you want to avoid BigDecimal like the plague here. PostScript Points -> any sane measurement system involves lots of silly floating point, BigDecimal assumes something rather saner. I was wondering whether some precision limit was worth enforcing (AFAICT InDesign et al don't output anything like the precision Prawn does, they round out at 3 or 4 places (IIRC)). That might, in turn, make this kind of problem largely go away. [I realise that this is not an entirely helpful comment in this context] |
@sandal Yes, I think using a FP epsilon and changing equality tests to closeness tests is the best (least insane) way to go here. BigDecimal is going to be a huge rabbit hole that offers little payoff, IMO. |
@bradediger OK, Should we decide on a precision and create a constant for it? I feel like 10^-9 is more than enough, but we could use something close to machine precision via |
@sandal Errors accumulate during consecutive numerical operations, so we can't necessarily just use the machine epsilon. But I definitely think we could standardize on an epsilon around 1e-9 (give or take a few orders of magnitude) for all FP comparisons. |
Okay, so it sounds like we just need to add a test for the uncovered case here, and clean up the checks a little bit. I'm unblocked to work on this, but won't get around to it for at least another week. Anyone who wants to take a stab at this sooner than that is welcome to do so. |
I can't really think of how to construct the test case the possible rounding error in the natural column widths code, so I think we'll need to build one in response to a regression rather than proactively. I made some minor tweaks, and I'm going to go ahead and squash+merge this now. |
This is a squashed commit of the following: commit 58fa18f Author: Gregory Brown <[email protected]> Date: Mon Feb 3 12:05:10 2014 -0500 Wrap spec text commit 8565dca Author: Gregory Brown <[email protected]> Date: Mon Feb 3 11:59:35 2014 -0500 Extract float precision constant and clarify documentation commit 54432f9 Merge: f2b2638 7ea6dad Author: Gregory Brown <[email protected]> Date: Mon Feb 3 11:47:13 2014 -0500 Merge branch 'master' of github.com:prawnpdf/prawn into column_width_arithmetic_errors commit f2b2638 Author: Hartwig Brandl <[email protected]> Date: Wed Jan 15 20:51:38 2014 +0100 allowing for small arithmetic errors when calculating column widths
This is a squashed commit of the following: commit 58fa18f Author: Gregory Brown <[email protected]> Date: Mon Feb 3 12:05:10 2014 -0500 Wrap spec text commit 8565dca Author: Gregory Brown <[email protected]> Date: Mon Feb 3 11:59:35 2014 -0500 Extract float precision constant and clarify documentation commit 54432f9 Merge: f2b2638 7ea6dad Author: Gregory Brown <[email protected]> Date: Mon Feb 3 11:47:13 2014 -0500 Merge branch 'master' of github.com:prawnpdf/prawn into column_width_arithmetic_errors commit f2b2638 Author: Hartwig Brandl <[email protected]> Date: Wed Jan 15 20:51:38 2014 +0100 allowing for small arithmetic errors when calculating column widths
I found another bug in the table width calculation algorithm.
In some cases arithmetic errors lead to errors.
Testcase to illustrate the problem
Output of current master
This pull request addresses the issue by allowing for an small arithmetic error (e-09) in the two affected algorithms.