Skip to content

Commit

Permalink
Quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xknxwledge committed Jul 22, 2024
1 parent 63467d7 commit 0717ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DegeGauss.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ library DegeGauss {
function erfc(bytes16 z) internal pure returns (bytes16)
{
// Set to 18 decimal precision
bytes16 z = ABDKMathQuad.abs(z).mul(ONE);
z = ABDKMathQuad.abs(z).mul(ONE);
// Compute t = 1 / (1 + z/2)
bytes16 t = LIL_ONE.div(LIL_ONE.add(z.div(LIL_TWO)));

Expand Down

0 comments on commit 0717ac0

Please sign in to comment.