SciML / OrdinaryDiffEq.jl

High performance ordinary differential equation (ODE) and differential-algebraic equation (DAE) solvers, including neural ordinary differential equations (neural ODEs) and scientific machine learning (SciML)
https://diffeq.sciml.ai/latest/
Other
565 stars 212 forks source link

propagate `verbose` keyword to linsolve #1571

Open vpuri3 opened 2 years ago

vpuri3 commented 2 years ago

https://github.com/SciML/OrdinaryDiffEq.jl/blob/2aa067e2a39ebe50ec9ffccbe002c34c9e494584/src/nlsolve/utils.jl#L154-L174

ChrisRackauckas commented 2 years ago

Hmm, that might be a bit much because verbose is true by default and meant only for warnings. We need different levels of verbosity.

vpuri3 commented 2 years ago

yeah it's a linear solve embedded in a nonlinear solve embedded in an integrator. we need verbosity keyword for each embedded solve i guess