Searched refs:adjM (Results 1 – 1 of 1) sorted by relevance
305 std::vector<std::vector<bool>> &adjM) { in topSortDFS() argument310 if (adjM[i][j]) in topSortDFS()311 if (!topSortDFS(j, visit, topSort, adjM)) in topSortDFS()328 std::vector<std::vector<bool>> adjM(n, std::vector<bool>(n, false)); in computeIterationGraph()342 adjM[f][t] = true; in computeIterationGraph()352 if (!topSortDFS(i, visit, topSort, adjM)) in computeIterationGraph()