Skip to content

Commit

Permalink
Fixed negative rho crashing
Browse files Browse the repository at this point in the history
  • Loading branch information
propfeds committed Dec 26, 2024
1 parent 8da3f92 commit 3b0c7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion theory.js
Original file line number Diff line number Diff line change
Expand Up @@ -1608,7 +1608,7 @@ var getQuaternaryEntries = () =>
return quaternaryEntries;
}

var getTau = () => normCurrency.value.pow(tauRate);
var getTau = () => normCurrency.value.abs().pow(tauRate);

var getCurrencyFromTau = (tau) =>
[
Expand Down

0 comments on commit 3b0c7c8

Please sign in to comment.