Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
integrator.hpp
Go to the documentation of this file.
1// -------------------------------------------------------//
2//
3// SHAMROCK code for hydrodynamics
4// Copyright (c) 2021-2026 Timothée David--Cléris <tim.shamrock@proton.me>
5// SPDX-License-Identifier: CeCILL Free Software License Agreement v2.1
6// Shamrock is licensed under the CeCILL 2.1 License, see LICENSE for more information
7//
8// -------------------------------------------------------//
9
10#pragma once
11
19#include <functional>
20
21namespace shammath {
22
23 template<class T, class Lambda>
24 inline constexpr T integ_riemann_sum(T start, T end, T step, Lambda &&fct) {
25 T acc = {};
26
27 for (T x = start; x < end; x += step) {
28 acc += fct(x) * step;
29 }
30 return acc;
31 }
32
33} // namespace shammath
namespace for math utility
Definition AABB.hpp:26