stefanvodita commented on issue #13720: URL: https://github.com/apache/lucene/issues/13720#issuecomment-2331754886
It's one of those float-summation-is-not-commutative errors. First ordering: ``` 1> 0.0 + 575310.1 = 575310.1 1> 575310.1 + 701147.2 = 1276457.2 1> 1276457.2 + 555620.8 = 1832078.0 ``` Second ordering: ``` 1> 0.0 + 575310.1 = 575310.1 1> 575310.1 + 555620.8 = 1130931.0 1> 1130931.0 + 701147.2 = 1832078.2 ``` The results are compared with an epsilon of 0.2. The short-term solution can be to increase that even more. The long-term solution can be #13011. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org