------------------------------------------------------------------------------
| 127 | |
| 128 | //------------------------------------------------------------------------------ |
| 129 | void vtkMutableUndirectedGraph::LazyAddVertex() |
| 130 | { |
| 131 | if (this->Internals->UsingPedigreeIds && this->GetDistributedGraphHelper() != nullptr) |
| 132 | { |
| 133 | vtkErrorMacro("Adding vertex without a pedigree ID into a distributed graph that uses pedigree " |
| 134 | "IDs to name vertices"); |
| 135 | } |
| 136 | |
| 137 | this->LazyAddVertex(nullptr); |
| 138 | } |
| 139 | |
| 140 | //------------------------------------------------------------------------------ |
| 141 | void vtkMutableUndirectedGraph::LazyAddVertex(vtkVariantArray* propertyArr) |
nothing calls this directly
no test coverage detected