/usr/include/vtk-5.10/vtkBoostBetweennessClustering.h is in libvtk5-dev 5.10.1+dfsg-2.1build1.
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 | /*=========================================================================
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.
=========================================================================*/
// .NAME vtkBoostBetweennessClustering - Implements graph clustering based on
// edge betweenness centrality.
//
// .SECTION Description
//
// This vtk class uses the Boost centrality clustering
// generic algorithm to compute edge betweenness centrality on
// the input graph (a vtkGraph).
// .SECTION See Also
// vtkGraph vtkBoostGraphAdapter
#ifndef __vtkBoostBetweennessClustering_h
#define __vtkBoostBetweennessClustering_h
#include "vtkGraphAlgorithm.h"
class VTK_INFOVIS_EXPORT vtkBoostBetweennessClustering :
public vtkGraphAlgorithm
{
public:
static vtkBoostBetweennessClustering* New();
vtkTypeMacro(vtkBoostBetweennessClustering, vtkGraphAlgorithm);
void PrintSelf(ostream &os, vtkIndent indent);
vtkBoostBetweennessClustering();
virtual ~vtkBoostBetweennessClustering();
// Description:
// Get/Set the threshold value. Algorithm terminats when the maximum edge
// centrality is below this threshold.
vtkSetMacro(Threshold, double);
vtkGetMacro(Threshold, double);
// Description:
// 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);
// Description:
// 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);
// Description:
// 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&); // Not implemented.
void operator=(const vtkBoostBetweennessClustering&); // Not implemented.
};
#endif // __vtkBoostBetweennessClustering_h
|