Skip to content

Commit

Permalink
Merge pull request #165 from bluescarni/pr/small_tweaks
Browse files Browse the repository at this point in the history
heyoka updates
  • Loading branch information
bluescarni authored Jan 26, 2024
2 parents f5f2fbe + 76f8cb8 commit b18dc52
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/breaking_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The affected APIs include:

- :ref:`compiled functions <cfunc_tut>`, which now require the list of input
variables to be always supplied by the user;
- :func:`~heyoka.diff_tensors()`, which now requires an explicit list of differentiation
- :func:`~heyoka.diff_tensors()`, which now requires the differentiation
arguments to be always provided by the user.

The tutorials and the documentation have been updated accordingly.
Expand Down
2 changes: 2 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ Changes
arguments to :func:`~heyoka.diff_tensors()`
(`#164 <https://github.com/bluescarni/heyoka.py/pull/164>`__).
This is a :ref:`breaking change <bchanges_4_0_0>`.
- Improve performance when creating compiled functions
(`#162 <https://github.com/bluescarni/heyoka.py/pull/162>`__).
- **BREAKING**: :ref:`compiled functions <cfunc_tut>` now require
the list of input variables to be always supplied by the user
(`#162 <https://github.com/bluescarni/heyoka.py/pull/162>`__).
Expand Down
1 change: 1 addition & 0 deletions heyoka/expose_batch_integrators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>

#include <heyoka/events.hpp>
#include <heyoka/expression.hpp>
#include <heyoka/kw.hpp>
#include <heyoka/llvm_state.hpp>
Expand Down
2 changes: 1 addition & 1 deletion heyoka/taylor_expose_c_output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

#endif

#include <heyoka/taylor.hpp>
#include <heyoka/continuous_output.hpp>

#include "common_utils.hpp"
#include "custom_casters.hpp"
Expand Down
1 change: 1 addition & 0 deletions heyoka/taylor_expose_events.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
#endif

#include <heyoka/callable.hpp>
#include <heyoka/events.hpp>
#include <heyoka/kw.hpp>
#include <heyoka/s11n.hpp>
#include <heyoka/taylor.hpp>
Expand Down
1 change: 1 addition & 0 deletions heyoka/taylor_expose_integrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@

#endif

#include <heyoka/events.hpp>
#include <heyoka/expression.hpp>
#include <heyoka/kw.hpp>
#include <heyoka/llvm_state.hpp>
Expand Down

0 comments on commit b18dc52

Please sign in to comment.