cortner / PyAMG.jl

Convenience wrapper for PyAMG library
Other
9 stars 7 forks source link

Solve arguments as type information? #7

Closed ChrisRackauckas closed 7 years ago

ChrisRackauckas commented 7 years ago

It would be nice to be able to set the arguments for solve as the type information, so that way \ will solve with a certain tolerance and things like that.

cortner commented 7 years ago

makes sense. I'll try to do that asap.

cortner commented 7 years ago

Turns out I had already implemented that for solve, but not for \. Can you pull master and check whether this is what you want?

You can set the kwargs using set_kwargs!; or during construction, via RugeStubenSolver(A::SparseMatrixCSC, kwargs...)

ChrisRackauckas commented 7 years ago

Looks good.