VTK
|
Contructs a BFS tree from a graph. More...
#include <vtkBoostBreadthFirstSearchTree.h>
Contructs a BFS tree from a graph.
This vtk class uses the Boost breadth_first_search generic algorithm to perform a breadth first search from a given a 'source' vertex on the input graph (a vtkGraph). The result is a tree with root node corresponding to the start node of the search.
Definition at line 50 of file vtkBoostBreadthFirstSearchTree.h.
Reimplemented from vtkTreeAlgorithm.
Definition at line 54 of file vtkBoostBreadthFirstSearchTree.h.
vtkBoostBreadthFirstSearchTree::vtkBoostBreadthFirstSearchTree | ( | ) | [protected] |
vtkBoostBreadthFirstSearchTree::~vtkBoostBreadthFirstSearchTree | ( | ) | [protected] |
static vtkBoostBreadthFirstSearchTree* vtkBoostBreadthFirstSearchTree::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkTreeAlgorithm.
static int vtkBoostBreadthFirstSearchTree::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkTreeAlgorithm.
virtual int vtkBoostBreadthFirstSearchTree::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkTreeAlgorithm.
static vtkBoostBreadthFirstSearchTree* vtkBoostBreadthFirstSearchTree::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkTreeAlgorithm.
virtual vtkObjectBase* vtkBoostBreadthFirstSearchTree::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkTreeAlgorithm.
Reimplemented from vtkTreeAlgorithm.
void vtkBoostBreadthFirstSearchTree::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkTreeAlgorithm.
void vtkBoostBreadthFirstSearchTree::SetOriginVertex | ( | vtkIdType | index | ) |
Set the index (into the vertex array) of the breadth first search 'origin' vertex.
void vtkBoostBreadthFirstSearchTree::SetOriginVertex | ( | vtkStdString | arrayName, |
vtkVariant | value | ||
) |
Set the breadth first search 'origin' vertex. This method is basically the same as above but allows the application to simply specify an array name and value, instead of having to know the specific index of the vertex.
virtual void vtkBoostBreadthFirstSearchTree::SetCreateGraphVertexIdArray | ( | bool | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
virtual bool vtkBoostBreadthFirstSearchTree::GetCreateGraphVertexIdArray | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
virtual void vtkBoostBreadthFirstSearchTree::CreateGraphVertexIdArrayOn | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
virtual void vtkBoostBreadthFirstSearchTree::CreateGraphVertexIdArrayOff | ( | ) | [virtual] |
Stores the graph vertex ids for the tree vertices in an array named "GraphVertexId". Default is off.
virtual void vtkBoostBreadthFirstSearchTree::SetReverseEdges | ( | bool | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
virtual bool vtkBoostBreadthFirstSearchTree::GetReverseEdges | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
virtual void vtkBoostBreadthFirstSearchTree::ReverseEdgesOn | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
virtual void vtkBoostBreadthFirstSearchTree::ReverseEdgesOff | ( | ) | [virtual] |
Turn on this option to reverse the edges in the graph.
int vtkBoostBreadthFirstSearchTree::FillInputPortInformation | ( | int | port, |
vtkInformation * | info | ||
) | [protected, virtual] |
Fill the input port information objects for this algorithm. This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented from vtkTreeAlgorithm.
int vtkBoostBreadthFirstSearchTree::RequestData | ( | vtkInformation * | request, |
vtkInformationVector ** | inputVector, | ||
vtkInformationVector * | outputVector | ||
) | [protected, virtual] |
This is called by the superclass. This is the method you should override.
Reimplemented from vtkTreeAlgorithm.