@{ * The range of the data array values for the given component will be * returned in the provided range array argument. If comp is -1, the range * of the magnitude (L2 norm) over all components will be provided. The * range is computed and then cached, and will not be re-computed on * subsequent calls to GetRange() unless the array is modified or the * requested component changes.
| 391 | * THIS METHOD IS NOT THREAD SAFE. |
| 392 | */ |
| 393 | void GetRange(double range[2], int comp) { this->ComputeRange(range, comp); } |
| 394 | void GetRange(double range[2], int comp, const unsigned char* ghosts, unsigned char ghostsToSkip) |
| 395 | { |
| 396 | this->ComputeRange(range, comp, ghosts, ghostsToSkip); |
no test coverage detected