Home | History | Annotate | Download | only in grxmlcompile

Lines Matching refs:depthMap

167 void SubGraph::ReverseDepthOnTerminal (int *depthMap)
171 ReverseDepthData (arc[ii]->GetFromId(), depthMap, 1);
175 void SubGraph::ReverseDepthData (int startId, int *depthMap, int depth)
179 if (depthMap[startId] > depth)
180 depthMap[startId]= depth;
190 ReverseDepthData (nextId, depthMap, depth+1);
196 void SubGraph::ForwardDepthData (int startId, int *depthMap, int depth)
200 if (depthMap[startId] > depth)
201 depthMap[startId]= depth;
211 ForwardDepthData (nextId, depthMap, depth+1);