Skip to content

Commit

Permalink
set faster hash
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Oct 22, 2024
1 parent d250e34 commit 848e6b2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ public double getAsNaNDouble(int i) {
*/
public void set(int rl, int ru, Array<T> value, int rlSrc) {
for(int i = rl, off = rlSrc; i <= ru; i++, off++)
set(i, value.get(off));
set(i, value.getInternal(off));
}

/**
Expand Down

0 comments on commit 848e6b2

Please sign in to comment.