Skip to content

Commit 493b86d

Browse files
committed
Fix formatting
1 parent bd654d1 commit 493b86d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/Nonlinear/ReverseAD.jl

+2-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,8 @@ function test_hessian_sparsity_registered_rosenbrock()
319319
Nonlinear.Evaluator(model, Nonlinear.SparseReverseMode(), [x, y])
320320
@test :Hess in MOI.features_available(evaluator)
321321
MOI.initialize(evaluator, [:Grad, :Jac, :Hess])
322-
@test MOI.hessian_lagrangian_structure(evaluator) == [(1, 1), (2, 2), (2, 1)]
322+
@test MOI.hessian_lagrangian_structure(evaluator) ==
323+
[(1, 1), (2, 2), (2, 1)]
323324
H = fill(NaN, 3)
324325
MOI.eval_hessian_lagrangian(evaluator, H, [1.0, 1.0], 1.5, Float64[])
325326
@test H == 1.5 .* [802, 200, -400]

0 commit comments

Comments
 (0)