| 10 | using namespace amrex; |
| 11 | |
| 12 | Diffusion::Diffusion(Amr* Parent, BCRec* _phys_bc) |
| 13 | : |
| 14 | parent(Parent), |
| 15 | LevelData(MAX_LEV), |
| 16 | grids(MAX_LEV), |
| 17 | volume(MAX_LEV), |
| 18 | area(MAX_LEV), |
| 19 | phys_bc(_phys_bc) |
| 20 | { |
| 21 | AMREX_ALWAYS_ASSERT(parent->maxLevel() < MAX_LEV); |
| 22 | |
| 23 | make_mg_bc(); |
| 24 | } |
| 25 | |
| 26 | |
| 27 | void |
nothing calls this directly
no outgoing calls
no test coverage detected