Skip to content

Verbosity System Description #962

Open
@jClugstor

Description

@jClugstor

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions