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
|
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkBoostBiconnectedComponents.h,v $
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 (c) Sandia Corporation
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
----------------------------------------------------------------------------*/
// .NAME vtkBoostBiconnectedComponents - Find the biconnected components of a graph
//
// .SECTION Description
// The biconnected components of a graph are maximal regions of the graph where
// the removal of any single vertex from the region will not disconnect the
// graph. Every edge belongs to exactly one biconnected component. The
// biconnected component of each edge is given in the edge array named
// "biconnected component". The biconnected component of each vertex is also
// given in the vertex array named "biconnected component". Cut vertices (or
// articulation points) belong to multiple biconnected components, and break
// the graph apart if removed. These are indicated by assigning a component
// value of -1. To get the biconnected components that a cut vertex belongs
// to, traverse its edge list and collect the distinct component ids for its
// incident edges.
#ifndef __vtkBoostBiconnectedComponents_h
#define __vtkBoostBiconnectedComponents_h
#include "vtkGraphAlgorithm.h"
class VTK_INFOVIS_EXPORT vtkBoostBiconnectedComponents : public vtkGraphAlgorithm
{
public:
static vtkBoostBiconnectedComponents *New();
vtkTypeRevisionMacro(vtkBoostBiconnectedComponents, vtkGraphAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
protected:
vtkBoostBiconnectedComponents();
~vtkBoostBiconnectedComponents();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
private:
vtkBoostBiconnectedComponents(const vtkBoostBiconnectedComponents&); // Not implemented.
void operator=(const vtkBoostBiconnectedComponents&); // Not implemented.
};
#endif
|