We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(Version v0.0.2 of LorenzPy)
The type annotations of all systems using the solver argument are wrong. There are three different kinds of problems:
solver
str
def __init__( self, sigma: float = 10.0, rho: float = 28.0, beta: float = 8 / 3, dt: float = 0.03, solver: str | str | Callable[[Callable, float, np.ndarray], np.ndarray] = "rk4", ):
MackeyGlass
Callable
def __init__( self, a: float = 0.2, b: float = 0.1, c: int = 10, tau: float = 23.0, dt: float = 0.1, solver: str | Callable = "rk4", ) -> None:
SimplestDrivenChaotic
def __init__(self, omega: float = 1.88, dt: float = 0.1, solver="rk4") -> None: """Initialize the SimplestDrivenChaotic simulation object.""" super().__init__(dt, solver) self.omega = omega
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(Version v0.0.2 of LorenzPy)
The type annotations of all systems using the
solver
argument are wrong. There are three different kinds of problems:solver
argument usesstr
twice:MackeyGlass
the type-annotation is only specifed asCallable
:SimplestDrivenChaotic
there is no type annotation forsolver
:The text was updated successfully, but these errors were encountered: