Skip to content

Commit 8f46c43

Browse files
Minor JOSS paper + bib edits (#240)
* minor bib and paper edits * add pyo3 version Ref: JOSS #9384 --------- Co-authored-by: Martin Robinson <martinjrobins@gmail.com>
1 parent 1247009 commit 8f46c43

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

paper/paper.bib

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@software{cranelift,
22
author = {{Bytecode Alliance}},
33
title = {cranelift},
4-
url = {https://wasmtime.dev/},
4+
url = {https://wasmtime.dev},
55
version = {0.115.1},
66
date = {2025-03-13},
77
}
@@ -17,7 +17,7 @@ @software{nalgebra
1717
@software{faer,
1818
author = {Sarah El Kazdadi},
1919
title = {faer-rs},
20-
url = {https://faer-rs.github.io/},
20+
url = {https://faer-rs.github.io},
2121
version = {0.1.0},
2222
date = {2025-03-13},
2323
}
@@ -35,7 +35,7 @@ @article{virtanen2020scipy
3535
}
3636

3737
@article{shampine1997matlab,
38-
title={The matlab ode suite},
38+
title={The {MATLAB} {ODE} suite},
3939
author={Shampine, Lawrence F and Reichelt, Mark W},
4040
journal={SIAM journal on scientific computing},
4141
volume={18},
@@ -164,7 +164,9 @@ @article{tsitouras2011runge
164164
@software{PyO3_Project_and_Contributors,
165165
author = {{PyO3 Project and Contributors}},
166166
license = {["Apache-2.0", "MIT"]},
167-
url = {https://github.com/PyO3},
167+
url = {https://github.com/PyO3/pyo3},
168+
year = {2025},
169+
version = {v0.27.2},
168170
title = {{PyO3}}
169171
}
170172

paper/paper.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ ODE solvers written in lower-level languages like C, Fortran or Rust offer signi
5252

5353
The following solvers are available in `diffsol`:
5454

55-
1. A variable order Backwards Difference Formulae (BDF) solver, suitable for stiff problems and singular mass matrices. The basic algorithm is derived in [@byrne1975polyalgorithm], however this particular implementation follows that implemented in the Matlab routine ode15s [@shampine1997matlab] and the SciPy implementation [@virtanen2020scipy], which features the NDF formulas for improved stability
55+
1. A variable order Backwards Difference Formulae (BDF) solver, suitable for stiff problems and singular mass matrices. The basic algorithm is derived in [@byrne1975polyalgorithm], however this particular implementation follows that implemented in the MATLAB routine ode15s [@shampine1997matlab] and the SciPy implementation [@virtanen2020scipy], which features the NDF formulas for improved stability.
5656
2. A Singly Diagonally Implicit Runge-Kutta (SDIRK or ESDIRK) solver, suitable for moderately stiff problems and singular mass matrices. Two different butcher tableau are provided, TR-BDF2 [@bank1985transient; @hosea1996analysis] and ESDIRK34 [@jorgensen2018family], or users can supply their own.
5757
3. A variable order Explicit Runge-Kutta (ERK) solver, suitable for non-stiff problems. One butcher tableau is provided, the 4th order TSIT45 [@tsitouras2011runge], or users can supply their own.
5858

0 commit comments

Comments
 (0)