mirror of
https://github.com/erhant/circomkit.git
synced 2026-05-05 03:00:37 -04:00
11 lines
125 B
Plaintext
11 lines
125 B
Plaintext
pragma circom 2.0.0;
|
|
|
|
include "./math.circom";
|
|
|
|
/*
|
|
* Get number of bits
|
|
*/
|
|
function numOfBits(n) {
|
|
return log2(n) + 1;
|
|
}
|