Mauro Silberberg
Mauro Silberberg
No, I'm using pydantic v2: ``` # Name Version Build Channel pydantic 2.1.1 pypi_0 pypi pydantic-core 2.4.0 pypi_0 pypi pydantic-xml 2.2.0 pypi_0 pypi ``` Also, you can see all the...
Also, it would mean there would be only one protected attribute: `pydantic` (or whatever it ends up been called).
I need to be able to declare and export (outside Python) a Plot without actually producing (drawing) the plot, as the data itself might not yet be available. While I...
Yes, by export outside Python I mean to a text format like YAML. In my use case, it would be to an XML-based format called [SED-ML](https://sed-ml.org/) (Simulation Experiment Description Markup...
The AdaptiveRungeKutta class (from which RungeKutta23 derives) uses `E`, which is calculated from `B` and `B2` coefficients [here](https://github.com/hgrecco/numbakit-ode/blob/aa5a0f417a2218bd471db754b35cc61996b2461e/nbkode/runge_kutta/core.py#L64-L67). There seems to be just a difference in sign with respect to...
Each solver instance has an internal state (the last time `t` and state `y`), and successive calls to `.run` start from the last time. So, you can do this: ```python...
Some other cache-related maybe-relevant numba issues: - https://github.com/numba/numba/issues/1681 - https://github.com/numba/numba/issues/2065 - https://github.com/numba/numba/issues/3184 - https://github.com/numba/numba/issues/6264 - https://github.com/numba/numba/issues/6772 - https://github.com/numba/numba/issues/6957 Some are quite old, and might be duplicates from newer issues as...
But it is still producing a different cached version of `stepper` on each run: ``` > python cache.py && ls __pycache__/cache.stepper*.nbc | wc -l 1 > python cache.py && ls...
In the case of implicitness, it can be introspected from the coefficients, which would let us check that there are no misclassifications or typos in coefficients: ```python class RungeKutta: def...
Is this still being considered? I'd love using an API with few methods that appear in the autocomplete (`df.`), which would imply hiding them somehow from the "main namespace" (that...