We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1238b2b commit 0a3b794Copy full SHA for 0a3b794
src/retcodes.jl
@@ -380,6 +380,23 @@ EnumX.@enumx ReturnCode begin
380
- successful_retcode = false
381
"""
382
Stalled
383
+
384
+ """
385
+ `ReturnCode.InternalLinearSolveFailed`
386
387
+ The linear problem inside another problem (for example inside a NonlinearProblem)
388
+ could not be solved.
389
390
+ ## Common Reasons for Seeing this Return Code
391
392
+ - If a rank-deficient matrix originated inside the nonlinear solve and the
393
+ provided linear solver is incapable of handling those cases.
394
395
+ ## Properties
396
397
+ - successful_retcode = false
398
399
+ InternalLinearSolveFailed
400
end
401
402
Base.:(!=)(retcode::ReturnCode.T, s::Symbol) = Symbol(retcode) != s
0 commit comments