40 #ifndef __vtkBoostBrandesCentrality_h
41 #define __vtkBoostBrandesCentrality_h
43 #include "vtkInfovisBoostGraphAlgorithmsModule.h"
44 #include "vtkVariant.h"
46 #include "vtkGraphAlgorithm.h"
53 void PrintSelf(ostream& os, vtkIndent indent);
58 vtkSetMacro(UseEdgeWeightArray,
bool);
59 vtkBooleanMacro(UseEdgeWeightArray,
bool);
62 vtkSetMacro(InvertEdgeWeightArray,
bool);
63 vtkBooleanMacro(InvertEdgeWeightArray,
bool);
68 vtkGetStringMacro(EdgeWeightArrayName);
69 vtkSetStringMacro(EdgeWeightArrayName);
76 int RequestData(vtkInformation *, vtkInformationVector **,
77 vtkInformationVector *);
82 bool UseEdgeWeightArray;
83 bool InvertEdgeWeightArray;
84 char* EdgeWeightArrayName;
Compute Brandes betweenness centrality on a vtkGraph.