Skip to content

Commit 9f461f1

Browse files
committed
Downgrade CI
Signed-off-by: ErikQQY <2283984853@qq.com>
1 parent 322725a commit 9f461f1

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ SafeTestsets = "0.1"
9292
SciMLBase = "2.11"
9393
SciMLOperators = "0.3.7"
9494
SimpleNonlinearSolve = "1.0.2"
95-
SparseArrays = "1.9"
95+
SparseArrays = "1.11.0"
9696
SparseDiffTools = "2.14"
9797
SpeedMapping = "0.3"
9898
StableRNGs = "1"

ext/NonlinearSolveSIAMFANLEquationsExt.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ function SciMLBase.__solve(prob::NonlinearProblem, alg::SIAMFANLEquationsJL, arg
108108
sol = ptcsol(f!, u, FS, FPS; atol, rtol, maxit = maxiters,
109109
delta0 = delta, printerr = ShT)
110110
elseif method == :anderson
111-
println(u[:])
112-
sol = aasol(f!, u[:], m, zeros(eltype(u), N, 2*m+4), atol, rtol,
111+
sol = aasol(f!, u, m, zeros(eltype(u), N, 2*m+4), atol, rtol,
113112
maxit = maxiters, beta = beta)
114113
end
115114
else

src/extension_algs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ end
377377
- `method`: the choice of method for solving the nonlinear system.
378378
- `delta`: initial pseudo time step, default is 1e-3.
379379
- `linsolve` : JFNK linear solvers, choices are `gmres` and `bicgstab`.
380-
- `m`: Depth for Anderson acceleration, default as 0 for Picard iteration
380+
- `m`: Depth for Anderson acceleration, default as 0 for Picard iteration.
381381
- `beta`: Anderson mixing parameter, change f(x) to (1-beta)x+beta*f(x),
382382
equivalent to accelerating damped Picard iteration.
383383

0 commit comments

Comments
 (0)