add documentation
This commit is contained in:
parent
bdc5798eed
commit
46263b01a7
1 changed files with 7 additions and 0 deletions
|
@ -4,6 +4,13 @@ using namespace ED;
|
|||
|
||||
namespace Edmonds {
|
||||
|
||||
/**
|
||||
* @return List of vertices of the x-r path, where r is the root of the
|
||||
* special blossom forest component x belongs to.
|
||||
*
|
||||
* @note This assumes that the values of μ, φ and ρ represent a special
|
||||
* blossom forest on the graph when this method is called.
|
||||
* **/
|
||||
std::vector<NodeId> path_to_forest_root(Graph const & graph, NodeId id)
|
||||
{
|
||||
std::vector<NodeId> retval;
|
||||
|
|
Loading…
Reference in a new issue