Skip to content

uncalibrated

Uncalibrated IVP solvers.

solver(strategy) ¤

Create a solver that does not calibrate the output scale automatically.

Source code in probdiffeq/solvers/uncalibrated.py
 8
 9
10
11
12
13
def solver(strategy, /):
    """Create a solver that does not calibrate the output scale automatically."""
    string_repr = f"<Uncalibrated solver with {strategy}>"
    return _UncalibratedSolver(
        strategy=strategy, string_repr=string_repr, requires_rescaling=False
    )