Skip to content
Merged
Changes from all commits
Commits
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
12 changes: 10 additions & 2 deletions interfaces/network_initialization.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#include <AMReX_BLassert.H>
#include <extern_parameters.H>

#ifdef REACTIONS
#include <actual_network.H>
#ifdef NEW_NETWORK_IMPLEMENTATION
Expand All @@ -21,7 +24,7 @@ void network_init()

#ifdef REACTIONS
#ifdef NONAKA_PLOT
nonaka_init();
nonaka_init();
#endif
#ifdef NEW_NETWORK_IMPLEMENTATION
actual_network_init();
Expand All @@ -35,5 +38,10 @@ nonaka_init();
// read in the NSE table (if there is one)
init_nse();
#endif
#endif
// some safety checks
AMREX_ALWAYS_ASSERT(integrator_rp::ode_max_steps > 0);

#endif // REACTIONS


}
Loading