----------------------------------------------------------------------------
| 2133 | |
| 2134 | //---------------------------------------------------------------------------- |
| 2135 | bool vtkTestUtilities::CompareAbstractArray(vtkAbstractArray* array1, vtkAbstractArray* array2, |
| 2136 | double toleranceFactor, vtkUnsignedCharArray* ghosts, unsigned char ghostsToSkip) |
| 2137 | { |
| 2138 | ::FixToleranceFactorIfNeeded(toleranceFactor); |
| 2139 | return ::TestAbstractArray(array1, array2, ::IdentityMapper(array1->GetNumberOfTuples()), |
| 2140 | toleranceFactor, ghosts, ghostsToSkip); |
| 2141 | } |
| 2142 | |
| 2143 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected