Skip to content

Commit d9468c5

Browse files
committed
Stressing JuliaNLSolver in Non-linear FE computations
1 parent e5a933f commit d9468c5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/FESpacesTests/NonLinearFEOperatorsTests.jl

+2-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ op = NonLinearFEOperator(res,jac,V,U,assem,trian,quad)
4646

4747
# Define the FESolver
4848
ls = LUSolver()
49-
tol = 1.e-10
50-
maxiters = 20
51-
nls = NewtonRaphsonSolver(ls,tol,maxiters)
49+
nls = JuliaNLSolver(
50+
ls,method=:newton,show_trace=false,ftol=1.e-10,iterations=20)
5251
solver = NonLinearFESolver(nls)
5352

5453
# Solve!

0 commit comments

Comments
 (0)