Concept Flow - Sparse linear algebra solvers
Start with sparse matrix A and vector b
Choose solver method (e.g., cg, bicg, gmres)
Initialize solver variables
Iterative solve loop
Compute residual
Converged?
Return solution
End
The solver starts with a sparse matrix and vector, chooses an iterative method, then loops updating the solution until it converges or stops.