VTK  9.1.0
vtkBoostBreadthFirstSearchTree.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkBoostBreadthFirstSearchTree.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15/*-------------------------------------------------------------------------
16 Copyright 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
45#ifndef vtkBoostBreadthFirstSearchTree_h
46#define vtkBoostBreadthFirstSearchTree_h
47
48#include "vtkInfovisBoostGraphAlgorithmsModule.h" // For export macro
49#include "vtkStdString.h" // For string type
50#include "vtkVariant.h" // For variant type
51
52#include "vtkTreeAlgorithm.h"
53
54class VTKINFOVISBOOSTGRAPHALGORITHMS_EXPORT vtkBoostBreadthFirstSearchTree : public vtkTreeAlgorithm
55{
56public:
59 void PrintSelf(ostream& os, vtkIndent indent) override;
60
66
75
77
81 vtkSetMacro(CreateGraphVertexIdArray, bool);
82 vtkGetMacro(CreateGraphVertexIdArray, bool);
83 vtkBooleanMacro(CreateGraphVertexIdArray, bool);
85
87
90 vtkSetMacro(ReverseEdges, bool);
91 vtkGetMacro(ReverseEdges, bool);
92 vtkBooleanMacro(ReverseEdges, bool);
94
95protected:
98
100
102
103private:
104 vtkIdType OriginVertexIndex;
105 char* ArrayName;
106 vtkVariant OriginValue;
107 bool ArrayNameSet;
108 bool CreateGraphVertexIdArray;
109 bool ReverseEdges;
110
112
115 vtkSetStringMacro(ArrayName);
117
122 vtkIdType GetVertexIndex(vtkAbstractArray* abstract, vtkVariant value);
123
125 void operator=(const vtkBoostBreadthFirstSearchTree&) = delete;
126};
127
128#endif
Abstract superclass for all arrays.
Constructs a BFS tree from a graph.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void SetOriginVertex(vtkStdString arrayName, vtkVariant value)
Set the breadth first search 'origin' vertex.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
static vtkBoostBreadthFirstSearchTree * New()
~vtkBoostBreadthFirstSearchTree() override
void SetOriginVertex(vtkIdType index)
Set the index (into the vertex array) of the breadth first search 'origin' vertex.
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:45
Superclass for algorithms that produce only Tree as output.
A atomic type representing the union of many types.
Definition: vtkVariant.h:75
@ info
Definition: vtkX3D.h:382
@ value
Definition: vtkX3D.h:226
@ port
Definition: vtkX3D.h:453
@ index
Definition: vtkX3D.h:252
int vtkIdType
Definition: vtkType.h:332