diff options
author | Brad King <brad.king@kitware.com> | 2010-08-20 18:11:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-08-25 21:10:00 (GMT) |
commit | 7be2617b5a52529ce0ca33e6c878a0294e1e2781 (patch) | |
tree | 9f6246316213f16ecd20d05b812965b51a29d30b /Source/cmComputeComponentGraph.cxx | |
parent | 95b3bb5dbcb6021f07329f5bc400b1a205386970 (diff) | |
download | CMake-7be2617b5a52529ce0ca33e6c878a0294e1e2781.zip CMake-7be2617b5a52529ce0ca33e6c878a0294e1e2781.tar.gz CMake-7be2617b5a52529ce0ca33e6c878a0294e1e2781.tar.bz2 |
Split notion of node lists and edge lists
Diffstat (limited to 'Source/cmComputeComponentGraph.cxx')
-rw-r--r-- | Source/cmComputeComponentGraph.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmComputeComponentGraph.cxx b/Source/cmComputeComponentGraph.cxx index 3f2a361..165af10 100644 --- a/Source/cmComputeComponentGraph.cxx +++ b/Source/cmComputeComponentGraph.cxx @@ -71,8 +71,8 @@ void cmComputeComponentGraph::TarjanVisit(int i) this->TarjanStack.push(i); // Follow outgoing edges. - NodeList const& nl = this->InputGraph[i]; - for(NodeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni) + EdgeList const& nl = this->InputGraph[i]; + for(EdgeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni) { int j = *ni; @@ -142,8 +142,8 @@ void cmComputeComponentGraph::TransferEdges() for(int i=0; i < n; ++i) { int i_component = this->TarjanComponents[i]; - NodeList const& nl = this->InputGraph[i]; - for(NodeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni) + EdgeList const& nl = this->InputGraph[i]; + for(EdgeList::const_iterator ni = nl.begin(); ni != nl.end(); ++ni) { int j = *ni; int j_component = this->TarjanComponents[j]; |