mirror of
https://github.com/arnaucube/Nova.git
synced 2026-01-29 15:26:39 +01:00
optimize the non-native arithmetic and hashing costs by using 4 limbs instead of 8 (#102)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
pub(crate) const NUM_CHALLENGE_BITS: usize = 128;
|
||||
pub(crate) const NUM_HASH_BITS: usize = 250;
|
||||
pub(crate) const BN_LIMB_WIDTH: usize = 32;
|
||||
pub(crate) const BN_N_LIMBS: usize = 8;
|
||||
pub(crate) const BN_LIMB_WIDTH: usize = 64;
|
||||
pub(crate) const BN_N_LIMBS: usize = 4;
|
||||
|
||||
Reference in New Issue
Block a user