Skip to content

Commit

Permalink
update math flooring
Browse files Browse the repository at this point in the history
  • Loading branch information
kstoykov committed Mar 27, 2024
1 parent 8c9cb2e commit bb1b477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtual-counters-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ module.exports = class VirtualCountersManager {
this._divArith();
this._reduceCounters(Math.ceil(input.inputSize / 56) + 4, 'P');
this._reduceCounters(Math.ceil(input.inputSize / 56) + 4, 'D');
this._multiCall('_opLogLoop', Math.floor(input.inputSize + 1 / 32));
this._multiCall('_opLogLoop', Math.floor((input.inputSize + 1) / 32));
this._mLoadX();
this._SHRarith();
this._fillBlockInfoTreeWithLog();
Expand Down

0 comments on commit bb1b477

Please sign in to comment.