Fix for crashes due to non-working cycle detection.

Start of radial symmetric function.
This commit is contained in:
2007-11-28 22:43:33 +00:00
parent 24beb8fb8c
commit 1cb7325c2b
3 changed files with 168 additions and 38 deletions

View File

@@ -115,10 +115,10 @@ void buildAdjacencyList(ReebGraph *rg);
void sortNodes(ReebGraph *rg);
void sortArcs(ReebGraph *rg);
int subtreeDepth(ReebNode *node);
int subtreeDepth(ReebNode *node, ReebArc *rootArc);
int countConnectedArcs(ReebGraph *rg, ReebNode *node);
int hasAdjacencyList(ReebGraph *rg);
int isGraphAcyclic(ReebGraph *rg);
int isGraphCyclic(ReebGraph *rg);
/* Sanity check */
void verifyBuckets(ReebGraph *rg);