@@ -128,26 +128,29 @@ def solve_adaptive_save_at(
128128) -> IVPSolution :
129129 r"""Solve an initial value problem and return the solution at a pre-determined grid.
130130
131- This algorithm implements the method by Krämer (2024).
132- Please consider citing it if you use it for your research.
133- A PDF is available [here](https://arxiv.org/abs/2410.10530)
134- and Krämer's (2024) experiments are
135- [here](https://github.com/pnkraemer/code-adaptive-prob-ode-solvers).
136-
131+ This algorithm implements the method by Krämer (2024). Please consider citing it
132+ if you use it for your research. A PDF is available
133+ [here](https://arxiv.org/abs/2410.10530) and Krämer's (2024) experiments are
134+ available [here](https://github.com/pnkraemer/code-adaptive-prob-ode-solvers).
137135
138136 ??? note "BibTex for Krämer (2024)"
139137 ```bibtex
140- @article{krämer2024adaptive,
141- title={Adaptive Probabilistic {ODE} Solvers Without
142- Adaptive Memory Requirements},
143- author={Kr{\"a}mer, Nicholas},
144- year={2024},
145- eprint={2410.10530},
146- archivePrefix={arXiv},
147- url={https://arxiv.org/abs/2410.10530},
138+ @InProceedings{kramer2024adaptive,
139+ title = {Adaptive Probabilistic ODE Solvers Without Adaptive Memory
140+ Requirements},
141+ author = {Kr\"{a}mer, Nicholas},
142+ booktitle = {Proceedings of the First International Conference on
143+ Probabilistic Numerics},
144+ pages = {12--24},
145+ year = {2025},
146+ editor = {Kanagawa, Motonobu and Cockayne, Jon and Gessner, Alexandra
147+ and Hennig, Philipp},
148+ volume = {271},
149+ series = {Proceedings of Machine Learning Research},
150+ publisher = {PMLR},
151+ url = {https://proceedings.mlr.press/v271/kramer25a.html}
148152 }
149153 ```
150-
151154 """
152155 if not adaptive_solver .solver .is_suitable_for_save_at :
153156 msg = (
0 commit comments