Description
The current way to specify verbosity for solvers is through the Bool
keyword argument verbose
, which just causes the solver to print out more information if it's true
. We can have a lot more flexibility by adding an AbstractVerbosity
abstract type and concrete subtypes for every SciMLProblem type.
For example we'll have a BVPVerbosity <: AbstractVerbosity
that will have toggle-able Bool fields for everything that we would want to print during a BVP solve.
We can have constructors so that BVPVerbosity(true)
has every field true
, BVPVerbosity(false)
has every field false, and BVPVerbosity(nothing)
is the default which has some things true and other things false.
This will allow the user to have much greater control over what is printed during the solution of any problem.