#include <MinimumSpanningTree.h>
Public Member Functions | |
te::graph::AbstractGraph * | kruskal (int weightAttrIdx) |
Function to execute the kruskal operation. More... | |
MinimumSpanningTree (te::graph::AbstractGraph *inputGraph) | |
Default constructor. More... | |
~MinimumSpanningTree () | |
Virtual destructor. More... | |
Protected Member Functions | |
te::graph::AbstractGraph * | createGraph () |
Function to create a empty graph with vertex attributes from gpm graph. More... | |
Protected Attributes | |
te::graph::AbstractGraph * | m_inputGraph |
Pointer to input graph. More... | |
Definition at line 50 of file MinimumSpanningTree.h.
te::sa::MinimumSpanningTree::MinimumSpanningTree | ( | te::graph::AbstractGraph * | inputGraph | ) |
Default constructor.
te::sa::MinimumSpanningTree::~MinimumSpanningTree | ( | ) |
Virtual destructor.
|
protected |
Function to create a empty graph with vertex attributes from gpm graph.
te::graph::AbstractGraph* te::sa::MinimumSpanningTree::kruskal | ( | int | weightAttrIdx | ) |
Function to execute the kruskal operation.
weightAttrIdx | The edge weight attribute index. |
|
protected |
Pointer to input graph.
Definition at line 78 of file MinimumSpanningTree.h.