| 1010 | } |
| 1011 | |
| 1012 | IntVect |
| 1013 | MultiFab::minIndex (int comp, int nghost) const |
| 1014 | { |
| 1015 | BL_ASSERT(nghost >= 0 && n_grow.allGE(nghost)); |
| 1016 | Real mn = this->min(comp, nghost, true); |
| 1017 | return indexFromValue(*this, comp, nghost, mn, MPI_MINLOC); |
| 1018 | } |
| 1019 | |
| 1020 | IntVect |
| 1021 | MultiFab::maxIndex (int comp, int nghost) const |
nothing calls this directly
no test coverage detected