giorgigagnidze16 opened a new issue, #14240:
URL: https://github.com/apache/lucene/issues/14240

   ### Description
   
   Currently, `DefaultVectorUtilSupport` contains methods that use unnecessary 
bitwise operations. These can be replaced with direct values to eliminate extra 
computations. For example, instead of `a.length & ~(4 - 1)`, simply use 
`a.length & -4`, and so on. A minor change would be necessary for this
   
   


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