forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkMutableDirectedGraph.cxx
255 lines (212 loc) · 8.42 KB
/
vtkMutableDirectedGraph.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*=========================================================================
Program: Visualization Toolkit
Module: vtkMutableDirectedGraph.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
#include "vtkMutableDirectedGraph.h"
#include "vtkDataSetAttributes.h"
#include "vtkGraphEdge.h"
#include "vtkGraphInternals.h"
#include "vtkObjectFactory.h"
//----------------------------------------------------------------------------
// class vtkMutableDirectedGraph
//----------------------------------------------------------------------------
vtkStandardNewMacro(vtkMutableDirectedGraph);
//----------------------------------------------------------------------------
vtkMutableDirectedGraph::vtkMutableDirectedGraph()
{
this->GraphEdge = vtkGraphEdge::New();
}
//----------------------------------------------------------------------------
vtkMutableDirectedGraph::~vtkMutableDirectedGraph()
{
this->GraphEdge->Delete();
}
//----------------------------------------------------------------------------
vtkIdType vtkMutableDirectedGraph::SetNumberOfVertices( vtkIdType numVerts )
{
vtkIdType retval = -1;
if ( this->GetDistributedGraphHelper() )
{
vtkWarningMacro( "SetNumberOfVertices will not work on distributed graphs." );
return retval;
}
retval = static_cast<vtkIdType>( this->Internals->Adjacency.size() );
this->Internals->Adjacency.resize( numVerts );
return retval;
}
//----------------------------------------------------------------------------
vtkIdType vtkMutableDirectedGraph::AddVertex()
{
if (this->Internals->UsingPedigreeIds &&
this->GetDistributedGraphHelper() != 0)
{
vtkErrorMacro("Adding vertex without a pedigree ID into a distributed graph that uses pedigree IDs to name vertices");
}
return this->AddVertex(0);
}
//----------------------------------------------------------------------------
vtkIdType vtkMutableDirectedGraph::AddVertex(vtkVariantArray *propertyArr)
{
if (this->GetVertexData()->GetPedigreeIds() != 0)
{
this->Internals->UsingPedigreeIds = true;
}
vtkIdType vertex;
this->AddVertexInternal(propertyArr, &vertex);
return vertex;
}
//----------------------------------------------------------------------------
vtkIdType vtkMutableDirectedGraph::AddVertex(const vtkVariant& pedigreeId)
{
this->Internals->UsingPedigreeIds = true;
vtkIdType vertex;
this->AddVertexInternal(pedigreeId, &vertex);
return vertex;
}
//----------------------------------------------------------------------------
vtkEdgeType vtkMutableDirectedGraph::AddEdge(vtkIdType u, vtkIdType v)
{
return this->AddEdge(u, v, 0);
}
//----------------------------------------------------------------------------
vtkEdgeType vtkMutableDirectedGraph::AddEdge(vtkIdType u, vtkIdType v,
vtkVariantArray *propertyArr)
{
vtkEdgeType e;
this->AddEdgeInternal(u, v, true, propertyArr, &e);
return e;
}
//----------------------------------------------------------------------------
vtkEdgeType vtkMutableDirectedGraph::AddEdge(const vtkVariant& u, vtkIdType v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
vtkEdgeType e;
this->AddEdgeInternal(u, v, true, propertyArr, &e);
return e;
}
//----------------------------------------------------------------------------
vtkEdgeType vtkMutableDirectedGraph::AddEdge(vtkIdType u, const vtkVariant& v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
vtkEdgeType e;
this->AddEdgeInternal(u, v, true, propertyArr, &e);
return e;
}
//----------------------------------------------------------------------------
vtkEdgeType vtkMutableDirectedGraph::AddEdge(const vtkVariant& u,
const vtkVariant& v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
vtkEdgeType e;
this->AddEdgeInternal(u, v, true, propertyArr, &e);
return e;
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddVertex()
{
if (this->Internals->UsingPedigreeIds
&& this->GetDistributedGraphHelper() != 0)
{
vtkErrorMacro("Adding vertex without a pedigree ID into a distributed graph that uses pedigree IDs to name vertices");
}
this->LazyAddVertex(0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddVertex(vtkVariantArray *propertyArr)
{
if (this->GetVertexData()->GetPedigreeIds() != 0)
{
this->Internals->UsingPedigreeIds = true;
}
this->AddVertexInternal(propertyArr, 0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddVertex(const vtkVariant& pedigreeId)
{
this->Internals->UsingPedigreeIds = true;
this->AddVertexInternal(pedigreeId, 0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddEdge(vtkIdType u, vtkIdType v,
vtkVariantArray *propertyArr)
{
this->AddEdgeInternal(u, v, true, propertyArr, 0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddEdge(const vtkVariant& u, vtkIdType v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
this->AddEdgeInternal(u, v, true, propertyArr, 0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddEdge(vtkIdType u, const vtkVariant& v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
this->AddEdgeInternal(u, v, true, propertyArr, 0);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::LazyAddEdge(const vtkVariant& u,
const vtkVariant& v,
vtkVariantArray *propertyArr)
{
this->Internals->UsingPedigreeIds = true;
this->AddEdgeInternal(u, v, true, propertyArr, 0);
}
//----------------------------------------------------------------------------
vtkGraphEdge *vtkMutableDirectedGraph::AddGraphEdge(vtkIdType u, vtkIdType v)
{
vtkEdgeType e = this->AddEdge(u, v);
this->GraphEdge->SetSource(e.Source);
this->GraphEdge->SetTarget(e.Target);
this->GraphEdge->SetId(e.Id);
return this->GraphEdge;
}
//----------------------------------------------------------------------------
vtkIdType vtkMutableDirectedGraph::AddChild(vtkIdType parent,
vtkVariantArray *propertyArr/* = 0*/)
{
vtkIdType v = this->AddVertex();
this->AddEdge(parent, v, propertyArr);
return v;
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::RemoveVertex(vtkIdType v)
{
this->RemoveVertexInternal(v, true);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::RemoveEdge(vtkIdType e)
{
this->RemoveEdgeInternal(e, true);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::RemoveVertices(vtkIdTypeArray* arr)
{
this->RemoveVerticesInternal(arr, true);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::RemoveEdges(vtkIdTypeArray* arr)
{
this->RemoveEdgesInternal(arr, true);
}
//----------------------------------------------------------------------------
void vtkMutableDirectedGraph::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}