------------------------------------------------------------------------------
| 45 | |
| 46 | //------------------------------------------------------------------------------ |
| 47 | vtkIdType vtkMutableUndirectedGraph::AddVertex() |
| 48 | { |
| 49 | if (this->Internals->UsingPedigreeIds && this->GetDistributedGraphHelper() != nullptr) |
| 50 | { |
| 51 | vtkErrorMacro("Adding vertex without a pedigree ID into a distributed graph that uses pedigree " |
| 52 | "IDs to name vertices"); |
| 53 | } |
| 54 | |
| 55 | return this->AddVertex(nullptr); |
| 56 | } |
| 57 | //------------------------------------------------------------------------------ |
| 58 | vtkIdType vtkMutableUndirectedGraph::AddVertex(vtkVariantArray* propertyArr) |
| 59 | { |
nothing calls this directly
no test coverage detected