This commit is contained in:
Luke Heerman 2024-12-16 21:31:21 -05:00
parent f87f279198
commit 111cea2381

View File

@ -169,7 +169,7 @@ export const run = (n) => saw.range(0, n).floor().segment(n);
*/
export const binary = (n) => {
const nBits = reify(n).log2(0).floor().add(1);
return binaryN(n, nBits)
return binaryN(n, nBits);
};
/**