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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkPBGLConnectedComponents.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.
-------------------------------------------------------------------------*/
/*
* Copyright (C) 2008 The Trustees of Indiana University.
* Use, modification and distribution is subject to the Boost Software
* License, Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt)
*/
#include <boost/graph/use_mpi.hpp> // must precede PBGL headers
#include "vtkPBGLConnectedComponents.h"
#if !defined(VTK_LEGACY_REMOVE)
#include "vtkCellArray.h"
#include "vtkCellData.h"
#include "vtkDataArray.h"
#include "vtkDirectedGraph.h"
#include "vtkDistributedGraphHelper.h"
#include "vtkFloatArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkMath.h"
#include "vtkObjectFactory.h"
#include "vtkPBGLGraphAdapter.h"
#include "vtkPBGLDistributedGraphHelper.h"
#include "vtkPointData.h"
#include "vtkSelection.h"
#include "vtkSmartPointer.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkStringArray.h"
#include "vtkType.h"
#include "vtkUndirectedGraph.h"
#include "vtkVertexListIterator.h"
#include <boost/graph/connected_components.hpp>
#include <boost/graph/distributed/connected_components.hpp>
#include <boost/graph/strong_components.hpp>
#include <boost/graph/distributed/strong_components.hpp>
#include <vtksys/stl/utility> // for pair
using namespace boost;
vtkStandardNewMacro(vtkPBGLConnectedComponents);
// Constructor/Destructor
vtkPBGLConnectedComponents::vtkPBGLConnectedComponents()
{
this->ComponentArrayName = 0;
this->SetNumberOfInputPorts(1);
this->SetNumberOfOutputPorts(1);
VTK_LEGACY_BODY(vtkPBGLConnectedComponents::vtkPBGLConnectedComponents, "VTK 6.2");
}
vtkPBGLConnectedComponents::~vtkPBGLConnectedComponents()
{
this->SetComponentArrayName(0);
}
int vtkPBGLConnectedComponents::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and output
vtkGraph *input = vtkGraph::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkGraph *output = vtkGraph::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
// Send the data to output.
output->ShallowCopy(input);
// Create the component array
vtkIdTypeArray* componentArray = vtkIdTypeArray::New();
if (this->ComponentArrayName)
{
componentArray->SetName(this->ComponentArrayName);
}
else
{
componentArray->SetName("Component");
}
componentArray->SetNumberOfTuples(output->GetNumberOfVertices());
vtkDistributedGraphHelper *helper = output->GetDistributedGraphHelper();
if (!helper)
{
vtkErrorMacro("Distributed vtkGraph is required.");
return 1;
}
// We can only deal with Parallel BGL-distributed graphs.
vtkPBGLDistributedGraphHelper *pbglHelper
= vtkPBGLDistributedGraphHelper::SafeDownCast(helper);
if (!pbglHelper)
{
vtkErrorMacro("Can only perform parallel shortest-paths on a Parallel BGL distributed graph");
return 1;
}
int myRank = outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER());
// Distributed component map
typedef vtkDistributedVertexPropertyMapType<vtkIdTypeArray>::type
DistributedComponentMap;
DistributedComponentMap componentMap
= MakeDistributedVertexPropertyMap(output, componentArray);
// Execute the algorithm itself
if (vtkUndirectedGraph::SafeDownCast(output))
{
// Distributed parent map. Used for scratch space in the algorithm
// itself.
vtkIdTypeArray* parentArray = vtkIdTypeArray::New();
parentArray->SetNumberOfTuples(output->GetNumberOfVertices());
typedef vtkDistributedVertexPropertyMapType<vtkIdTypeArray>::type
DistributedParentMap;
DistributedParentMap parentMap
= MakeDistributedVertexPropertyMap(output, parentArray);
vtkUndirectedGraph *g = vtkUndirectedGraph::SafeDownCast(output);
boost::graph::distributed::cc_detail::parallel_connected_components
(g, parentMap);
boost::graph::distributed::number_components_from_parents(g, parentMap,
componentMap);
// Remove the temporary parent array.
parentArray->Delete();
}
else
{
vtkDirectedGraph *g = vtkDirectedGraph::SafeDownCast(output);
boost::graph::distributed::fleischer_hendrickson_pinar_strong_components
(g, componentMap, MakeDistributedVertexIndexMap(g));
}
// Add component array to the output
output->GetVertexData()->AddArray(componentArray);
componentArray->Delete();
return 1;
}
void vtkPBGLConnectedComponents::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "ComponentArrayName: "
<< (this->ComponentArrayName ? this->ComponentArrayName : "(none)")
<< endl;
}
//----------------------------------------------------------------------------
int vtkPBGLConnectedComponents::FillInputPortInformation(
int port, vtkInformation* info)
{
// now add our info
if (port == 0)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkGraph");
}
return 1;
}
//----------------------------------------------------------------------------
int vtkPBGLConnectedComponents::FillOutputPortInformation(
int port, vtkInformation* info)
{
// now add our info
if (port == 0)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkGraph");
}
return 1;
}
#endif //VTK_LEGACY_REMOVE
|