Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
Description
Current implement is not correct:
for (int i = start; i < end; i++) { hash = 31 * vector.hashCode(i); }
Should be something like:
hash = 31 * hash + vector.hashCode(i);
Attachments
Issue Links
- links to