| 2 | #define problem_source_H |
| 3 | |
| 4 | AMREX_GPU_HOST_DEVICE AMREX_INLINE |
| 5 | void problem_source (int i, int j, int k, |
| 6 | GeometryData const& geomdata, |
| 7 | Array4<const Real> const& state, |
| 8 | Array4<Real> const& src, |
| 9 | const Real dt, const Real time) { |
| 10 | |
| 11 | amrex::ignore_unused(i); |
| 12 | amrex::ignore_unused(j); |
| 13 | amrex::ignore_unused(k); |
| 14 | amrex::ignore_unused(geomdata); |
| 15 | amrex::ignore_unused(state); |
| 16 | amrex::ignore_unused(src); |
| 17 | amrex::ignore_unused(dt); |
| 18 | amrex::ignore_unused(time); |
| 19 | |
| 20 | } |
| 21 | |
| 22 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected