JuliaImageRecon / RegularizedLeastSquares.jl

MIT License
20 stars 10 forks source link

Use the iterator interface for iterative solvers #5

Closed hofmannmartin closed 2 years ago

hofmannmartin commented 6 years ago

While searching for some more inspiration for our package, I stumbled across the package IterativeSolver. They use the iterator interface for their solvers and I quite like that (see e.g. https://github.com/JuliaMath/IterativeSolvers.jl/blob/master/src/cg.jl).

tknopp commented 6 years ago

Its nice because its the iterator interface but actually I don't see a pressing advantage. At least how it is currently used in IterativeSolvers.jl. The most pressing issue of this package is more the surface syntax.

tknopp commented 2 years ago

This was actually implemented by @migrosser once upon a time.