Skip to content

Commit

Permalink
chore: Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
storojs72 committed Mar 6, 2024
1 parent 7edd593 commit 63490b6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/pp-spartan-step-5.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,10 @@ contract PpSpartanStep5Computations is Test {
uint256[] memory eval_output_arr
) private pure returns (uint256[] memory) {
uint256 index = 0;
uint256[] memory eval_vec =
new uint256[](eval_left_arr.length + eval_right_arr.length + eval_output_arr.length + eval_A_B_C_z.length + evals_E.length + evals_val.length);
uint256[] memory eval_vec = new uint256[](
eval_left_arr.length + eval_right_arr.length + eval_output_arr.length + eval_A_B_C_z.length + evals_E.length
+ evals_val.length
);

for (uint256 i = 0; i < eval_A_B_C_z.length; i++) {
eval_vec[index] = eval_A_B_C_z[i];
Expand Down

0 comments on commit 63490b6

Please sign in to comment.