Skip to content

Commit 4ad46c1

Browse files
Update deprecated qr function call
1 parent fa01ad4 commit 4ad46c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NonlinearEquations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ function solveUnderdeterminedNonlinearEquations!( F!::Function,
600600
end
601601

602602
# Compute QR-factorization of Jacobian
603-
jacqr = qr(jac, Val(true))
603+
jacqr = qr(jac, ColumnNorm())
604604

605605
# Solve linear system -F'(x^k) * dx^k = F(x^k)
606606
ldiv!(dx, jacqr, fxk)

0 commit comments

Comments
 (0)