| 1168 | } |
| 1169 | |
| 1170 | static void _Graph_FreeRelationMatrices |
| 1171 | ( |
| 1172 | const Graph *g |
| 1173 | ) { |
| 1174 | uint relationCount = Graph_RelationTypeCount(g); |
| 1175 | for(uint i = 0; i < relationCount; i++) RG_Matrix_free(&g->relations[i]); |
| 1176 | } |
| 1177 | |
| 1178 | DataBlockIterator *Graph_ScanNodes(const Graph *g) { |
| 1179 | ASSERT(g); |
no test coverage detected