Skip to content

Commit 47d8620

Browse files
committed
Fix format
1 parent b9ff025 commit 47d8620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nonlinear/ReverseAD/forward_over_reverse.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function _eval_hessian_inner(
5555
num_products = size(ex.seed_matrix, 2) # number of hessian-vector products
5656
num_chunks = div(num_products, CHUNK)
5757
@assert size(ex.seed_matrix, 1) == length(ex.rinfo.local_indices)
58-
for offset in 1:CHUNK:CHUNK*num_chunks
58+
for offset in 1:CHUNK:(CHUNK*num_chunks)
5959
_eval_hessian_chunk(d, ex, offset, CHUNK, Val(CHUNK))
6060
end
6161
# leftover chunk

0 commit comments

Comments
 (0)