Skip to content

Commit

Permalink
Fix invalid EGCD reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mhostetter committed Oct 16, 2023
1 parent 8ee1444 commit 0a6753c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/galois/_domains/_calculate.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ def egcd(a: int, b: int) -> npt.NDArray: # pragma: no cover

return np.array([r2, s2, t2], dtype=DTYPE)

EGCD = egcd


@numba.jit(["int64(int64[:], int64[:])"], nopython=True, cache=True)
def crt(remainders: npt.NDArray, moduli: npt.NDArray) -> int: # pragma: no cover
Expand Down

0 comments on commit 0a6753c

Please sign in to comment.