/usr/include/vtk-7.1/vtkBoostBetweennessClustering.h is in libvtk7-dev 7.1.1+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkBoostGraphAdapter.h
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.
=========================================================================*/
/**
* @class vtkBoostBetweennessClustering
* @brief Implements graph clustering based on
* edge betweenness centrality.
*
*
*
* This vtk class uses the Boost centrality clustering
* generic algorithm to compute edge betweenness centrality on
* the input graph (a vtkGraph).
*
* @sa
* vtkGraph vtkBoostGraphAdapter
*/
#ifndef vtkBoostBetweennessClustering_h
#define vtkBoostBetweennessClustering_h
#include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
#include "vtkGraphAlgorithm.h"
class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostBetweennessClustering :
public vtkGraphAlgorithm
{
public:
static vtkBoostBetweennessClustering* New();
vtkTypeMacro(vtkBoostBetweennessClustering, vtkGraphAlgorithm);
void PrintSelf(ostream &os, vtkIndent indent);
vtkBoostBetweennessClustering();
virtual ~vtkBoostBetweennessClustering();
//@{
/**
* Get/Set the threshold value. Algorithm terminats when the maximum edge
* centrality is below this threshold.
*/
vtkSetMacro(Threshold, double);
vtkGetMacro(Threshold, double);
//@}
//@{
/**
* Get/Set the flag that sets the rule whether or not to use the
* edge weight array as set using \c SetEdgeWeightArrayName.
*/
vtkSetMacro(UseEdgeWeightArray, bool);
vtkBooleanMacro(UseEdgeWeightArray, bool);
//@}
vtkSetMacro(InvertEdgeWeightArray, bool);
vtkBooleanMacro(InvertEdgeWeightArray, bool);
//@{
/**
* Get/Set the name of the array that needs to be used as the edge weight.
* The array should be a vtkDataArray.
*/
vtkGetStringMacro(EdgeWeightArrayName);
vtkSetStringMacro(EdgeWeightArrayName);
//@}
//@{
/**
* Set the edge centrality array name. If no output array name is
* set then the name "edge_centrality" is used.
*/
vtkSetStringMacro(EdgeCentralityArrayName);
//@}
protected:
virtual int RequestData(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector);
virtual int FillOutputPortInformation(int port, vtkInformation* info);
private:
double Threshold;
bool UseEdgeWeightArray;
bool InvertEdgeWeightArray;
char* EdgeWeightArrayName;
char* EdgeCentralityArrayName;
vtkBoostBetweennessClustering(const vtkBoostBetweennessClustering&) VTK_DELETE_FUNCTION;
void operator=(const vtkBoostBetweennessClustering&) VTK_DELETE_FUNCTION;
};
#endif // vtkBoostBetweennessClustering_h
|