#include <iostream>

Go to the source code of this file.
Classes | |
| class | MSTNode |
| A simple class to represent a MSTNode. More... | |
Functions | |
| std::ostream & | operator<< (std::ostream &, const MSTNode &) |
| Insertion operator to stream MSTNode information to a given output stream. | |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const MSTNode & | node | |||
| ) |
Insertion operator to stream MSTNode information to a given output stream.
This method provides a convenient mechanism to dump MSTNode information for debugging purposes.
Definition at line 45 of file MSTNode.cpp.
References MSTNode::estIdx, MSTNode::metric, and MSTNode::parentIdx.
1.6.1