Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- Use `micromamba` instead of `miniconda` in CI ([#3](https://github.com/NREL/scikit-sundae/pull/3))

### Bug Fixes
- Fixed import typo in docstring examples for `RichResult` ([#29](https://github.com/NREL/scikit-sundae/pull/29))
- Resolve exception propagation consistently for Cython v3.1 and up ([#20](https://github.com/NREL/scikit-sundae/pull/20))
- Fix memory leak when `init_step` is repeatedly called in `CVODE` and `IDA` ([#19](https://github.com/NREL/scikit-sundae/pull/19))
- Add `sign_y` terms and default to `np.float64` for floating type in `j_pattern` ([#7](https://github.com/NREL/scikit-sundae/pull/7))
Expand Down
7 changes: 4 additions & 3 deletions src/sksundae/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, **kwargs):

.. code-block:: python

import sundae as sun
import sksundae as sun

class CustomResult(sun.utils.RichResult):
_order_keys = ['first', 'second', 'third',]
Expand All @@ -58,7 +58,8 @@ class CustomResult(sun.utils.RichResult):
.. code-block:: python

import numpy as np
from sundae.utils import RichResult

from sksundae.utils import RichResult

t = np.linspace(0, 1, 1000)
y = np.random.rand(1000, 5)
Expand All @@ -74,7 +75,7 @@ class CustomResult(sun.utils.RichResult):

.. code-block:: python

from sundae.utils import RichResult
from sksundae.utils import RichResult

result = RichResult(a=10, b=20, c=30)

Expand Down
Loading