| 125 | //---------------------------------------------------------------------------- |
| 126 | template <typename T> |
| 127 | bool IsMixedShape(T* grid) |
| 128 | { |
| 129 | int numShapes = ::GetNumShapes(grid); |
| 130 | |
| 131 | int maxNumShapes = 0; |
| 132 | vtkMultiProcessController::GetGlobalController()->AllReduce( |
| 133 | &numShapes, &maxNumShapes, 1, vtkCommunicator::MAX_OP); |
| 134 | return maxNumShapes > 1; |
| 135 | } |
| 136 | |
| 137 | //---------------------------------------------------------------------------- |
| 138 | void FillShapeMap(conduit_cpp::Node& shapeMapNode) |
no test coverage detected