Skip to content

Commit

Permalink
Don't include actual_rhs.H for new network implementation (#2534)
Browse files Browse the repository at this point in the history
actual_rhs.H is just a stub for already-converted networks so it would be good to be able to remove it.
  • Loading branch information
maxpkatz authored Aug 9, 2023
1 parent 48b65b7 commit 76295aa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Source/driver/timestep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@
#endif

#ifdef REACTIONS
#include <actual_network.H>
#ifdef NEW_NETWORK_IMPLEMENTATION
#include <rhs.H>
#else
#include <actual_rhs.H>
#endif
#endif

#ifdef RADIATION
#include <Radiation.H>
#endif

#ifdef NEW_NETWORK_IMPLEMENTATION
#include <rhs.H>
#endif


using namespace amrex;

Expand Down

0 comments on commit 76295aa

Please sign in to comment.