Skip to content

Commit

Permalink
remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-baker committed Aug 30, 2024
1 parent 86327fb commit 833f9c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ function generateInputData(seed: number, num: number, addCounter: boolean): Uint

const bound = Math.min(num, 32);
const index = prng.uniformInt(bound);
//console.log(`bound = ${bound}, index = ${index}`);

return new Uint32Array([
...iterRange(num, x => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ function generateInputData(seed: number, num: number, addCounter: boolean): Uint

const bound = Math.min(num, 32);
const index = prng.uniformInt(bound);
//console.log(`bound = ${bound}, index = ${index}`);

return new Uint32Array([
...iterRange(num, x => {
Expand Down

0 comments on commit 833f9c5

Please sign in to comment.