Lines Matching defs:graph
153 * initializer for the graph matrix
165 graph.push_back(line);
172 * method to build the dependency graph for the shapeset
194 if (!graph[i-1][y-1]) graph[i-1][y-1]++;
201 // graph[i][j] == 1 <=> Shape(i) contains Shape(j)
207 graph[i][i] = 0;
214 if (graph[j][i]) //if i is contained by j
219 if((graph[k][j])&&(graph[k][i]))
222 graph[k][i] = 0;
239 cout << graph[i][j] << " ";