rmuir commented on PR #11905:
URL: https://github.com/apache/lucene/pull/11905#issuecomment-1307760820

   @jdconrad helped with some math that may explain why previous tests didnt 
fail:
   ```
   jshell> int M = 16;
   M ==> 16
   
   jshell> long v1 = (1 + (M*2)) * 4 * 16268814;
   v1 ==> 2147483448
   
   jshell> long v2 = (1 + (M*2)) * 4 * 16268815;
   v2 ==> 2147483580
   
   jshell> long v3 = (1 + (M*2)) * 4 * 20000000;
   v3 ==> -1654967296
   ```
   
   So maybe this run with 20M docs will trip. I'll know in a few hours :)


-- 
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

Reply via email to