Home | History | Annotate | Download | only in grxmlcompile

Lines Matching refs:startId

39     startId= baseG->startId;
145 printf ("Graph %s (%d %d)\n", title, startId, lastId);
158 printf ("Graph %s (%d %d)\n", title, startId, lastId);
175 void SubGraph::ReverseDepthData (int startId, int *depthMap, int depth)
179 if (depthMap[startId] > depth)
180 depthMap[startId]= depth;
183 rix= FindToIndex (startId);
186 while (rix < numArc && arc[backwardList[rix]]->GetToId() == startId) {
196 void SubGraph::ForwardDepthData (int startId, int *depthMap, int depth)
200 if (depthMap[startId] > depth)
201 depthMap[startId]= depth;
204 rix= FindFromIndex (startId);
207 while (rix < numArc && arc[forwardList[rix]]->GetFromId() == startId) {