using MatrixMarket, SuiteSparseMatrixCollection
using Krylov, LinearOperators
using LinearAlgebra, Printf

ssmc = ssmc_db(verbose=false)
matrix = ssmc_matrices(ssmc, "HB", "well1850")
path = fetch_ssmc(matrix, format="MM")

A = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1]).mtx"))
b = MatrixMarket.mmread(joinpath(path[1], "$(matrix.name[1])_b.mtx"))[:]
(m, n) = size(A)
@printf("System size: %d rows and %d columns\n", m, n)

# Define a regularization parameter.
λ = 1.0e-3

(x, stats) = crls(A, b, λ=λ)
show(stats)
resid = norm(A' * (A * x - b) + λ * x) / norm(b)
@printf("CRLS: Relative residual: %8.1e\n", resid)
@printf("CRLS: ‖x‖: %8.1e\n", norm(x))
 Downloading artifact: HB/well1850.MM
System size: 1850 rows and 712 columns
SimpleStats
 niter: 259
 solved: true
 inconsistent: false
 residuals: []
 Aresiduals: []
 κ₂(A): []
 timer: 4.23ms
 status: solution good enough given atol and rtol
CRLS: Relative residual:  2.1e-08
CRLS: ‖x‖:  1.0e+04