Returns a list that has two elements, the vertices and the edge list.
(t, parent='', level=0)
| 187 | return edgeList |
| 188 | |
| 189 | def MakeGraph(t, parent='', level=0): |
| 190 | ''' |
| 191 | Returns a list that has two elements, the vertices and the edge list. |
| 192 | ''' |
| 193 | return [GetAllKeys(t), MakeEdgeList(t)] |
| 194 | |
| 195 | def GenerateGraph(moduleList, moduleDepencencies, moduleTreeDepth): |
| 196 | ''' |
no test coverage detected