Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e77907e
add a slightly more extensive nova network
zingale Aug 27, 2021
6ae3dcf
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Oct 6, 2021
1e3b012
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Oct 13, 2021
cf0a29c
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Feb 16, 2022
e4fbb2c
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Apr 7, 2022
645baad
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Aug 22, 2022
b754391
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Feb 23, 2023
d398920
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Jun 1, 2023
991b355
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Jun 9, 2023
03de257
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Nov 10, 2023
6a8ade9
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Nov 17, 2023
14be14d
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Dec 1, 2023
86cc226
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Apr 23, 2024
1be585f
Merge branch 'development' of ssh://github.com/StarKiller-astro/Micro…
zingale Sep 30, 2024
9a6d8b8
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Nov 13, 2024
a804b84
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Jan 27, 2025
07b8212
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Jan 30, 2025
5da1b53
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Apr 15, 2025
d3b0f0a
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Jun 23, 2025
9b02cea
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Jun 24, 2025
29a3868
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Jul 1, 2025
2fdfce9
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Aug 29, 2025
fe5b143
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Sep 19, 2025
c8683b3
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Sep 30, 2025
0ab20d7
Merge branch 'development' of github.com:amrex-astro/Microphysics int…
zingale Oct 28, 2025
a1fa5a9
some clang-tidy 21 fixes
zingale Oct 29, 2025
ca2aca4
more fixes
zingale Oct 29, 2025
c5eb3ed
Merge branch 'development' into clang-tidy-21-fixes
zingale Nov 3, 2025
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 .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Checks: >
-cppcoreguidelines-init-variables,
-cppcoreguidelines-macro-usage,
-cppcoreguidelines-non-private-member-variables-in-classes,
-cppcoreguidelines-use-enum-class,
-cppcoreguidelines-pro-*,
misc-*,
-misc-const-correctness,
Expand Down
4 changes: 2 additions & 2 deletions integration/nse_update_sdc.H
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

using namespace amrex::literals;

#if defined(NSE_TABLE)
#ifdef NSE_TABLE

///
/// this acts as an explicit Euler step for the system (rho e, rho aux)
Expand Down Expand Up @@ -517,4 +517,4 @@ void sdc_nse_burn(BurnT& state, const amrex::Real dt) {
}
#endif

#endif
#endif
2 changes: 1 addition & 1 deletion networks/general_null/network_header.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef NETWORK_PROPERTIES_H
#define NETWORK_PROPERTIES_H

#if defined(__GNUC__)
#ifdef __GNUC__
#define MICROPHYSICS_UNUSED [[gnu::unused]]
#else
#define MICROPHYSICS_UNUSED
Expand Down
2 changes: 1 addition & 1 deletion neutrinos/sneut5.H
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ number_t nu_photo(const sneutf_t<number_t>& sf) {

// equation 3.7

const auto [sin1, cos1] = admath::sincos(amrex::Real(nu_constants::fac1) * tau);
const auto [sin1, cos1] = admath::sincos(amrex::Real(nu_constants::fac1) * tau); // NOLINT(misc-confusable-identifiers)

const auto cos1_sq = eval(cos1 * cos1);
const auto sin1_sq = eval(sin1 * sin1);
Expand Down
Loading