You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are in fact three values similar to each other in the imported grid:
0.0033523339485467950
0.0033523339485468126
0.0033523339485468304
What happens is that (1) is close (less than 64 ULPS) to (2), and (2) is close to (3), but (1) isn't close to (3). Mathematically speaking numerical equality with a tolerance interval isn't transitive. Because of that probably (1) and (2) are removed here
and (3) is the representative value chosen by Grid::evolve_info, but then Grid::evolve can't find (1) using the same tolerance, because the distance of (1) to (3) is up to two times the tolerance.
The text was updated successfully, but these errors were encountered:
This continues the observation from NNPDF/pineko#72 (comment):
There are in fact three values similar to each other in the imported grid:
0.0033523339485467950
0.0033523339485468126
0.0033523339485468304
What happens is that (1) is close (less than 64 ULPS) to (2), and (2) is close to (3), but (1) isn't close to (3). Mathematically speaking numerical equality with a tolerance interval isn't transitive. Because of that probably (1) and (2) are removed here
pineappl/pineappl/src/grid.rs
Lines 1808 to 1809 in f2152da
and (3) is the representative value chosen by
Grid::evolve_info
, but thenGrid::evolve
can't find (1) using the same tolerance, because the distance of (1) to (3) is up to two times the tolerance.The text was updated successfully, but these errors were encountered: