@{ * 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.
| 452 | * THIS METHOD IS NOT THREAD SAFE. |
| 453 | */ |
| 454 | void GetFiniteRange(double range[2], int comp) { this->ComputeFiniteRange(range, comp); } |
| 455 | void GetFiniteRange( |
| 456 | double range[2], int comp, const unsigned char* ghosts, unsigned char ghostsToSkip) |
| 457 | { |
nothing calls this directly
no test coverage detected