Skip to content

Commit

Permalink
Correct commented asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdettman committed Feb 11, 2021
1 parent d5e5a61 commit 135a8ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private static int getWindow4(int[] x, int n)

private static byte[] getWnafVar(int[] n, int width)
{
// assert n[SCALAR_INTS - 1] <= L[SCALAR_INTS - 1];
// assert 0 <= n[SCALAR_INTS - 1] && n[SCALAR_INTS - 1] <= L[SCALAR_INTS - 1];
// assert 2 <= width && width <= 8;

int[] t = new int[SCALAR_INTS * 2];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ private static int getWindow4(int[] x, int n)

private static byte[] getWnafVar(int[] n, int width)
{
// assert n[SCALAR_INTS - 1] <= L[SCALAR_INTS - 1];
// assert 0 <= n[SCALAR_INTS - 1] && n[SCALAR_INTS - 1] <= L[SCALAR_INTS - 1];
// assert 2 <= width && width <= 8;

int[] t = new int[SCALAR_INTS * 2];
Expand Down

0 comments on commit 135a8ee

Please sign in to comment.