| 99 | } |
| 100 | |
| 101 | void refine(Patch<NDIM>& fine, const Patch<NDIM>&, int dst_idx, int, const Box<NDIM>&, const IntVector<NDIM>&) const |
| 102 | { |
| 103 | pout << "Refining\n"; |
| 104 | Pointer<CellData<NDIM, double>> data = fine.getPatchData(dst_idx); |
| 105 | data->fillAll(0.0); |
| 106 | return; |
| 107 | } |
| 108 | |
| 109 | private: |
| 110 | static const std::string s_op_name; |
no outgoing calls
no test coverage detected