------------------------------------------------------------------------------
| 1538 | |
| 1539 | //------------------------------------------------------------------------------ |
| 1540 | vtkIdType vtkHyperTreeGrid::GetGlobalNodeIndexMax() |
| 1541 | { |
| 1542 | // Iterate over all hyper trees |
| 1543 | vtkIdType max = 0; |
| 1544 | vtkHyperTree* crtTree = nullptr; |
| 1545 | vtkHyperTreeGridIterator it; |
| 1546 | this->InitializeTreeIterator(it); |
| 1547 | while ((crtTree = it.GetNextTree())) |
| 1548 | { |
| 1549 | max = std::max(max, crtTree->GetGlobalNodeIndexMax()); |
| 1550 | } // it |
| 1551 | return max; |
| 1552 | } |
| 1553 | |
| 1554 | //------------------------------------------------------------------------------ |
| 1555 | void vtkHyperTreeGrid::InitializeLocalIndexNode() |
no test coverage detected