| 486 | } |
| 487 | |
| 488 | uint Graph_DeletedNodeCount(const Graph *g) { |
| 489 | ASSERT(g); |
| 490 | return DataBlock_DeletedItemsCount(g->nodes); |
| 491 | } |
| 492 | |
| 493 | size_t Graph_UncompactedNodeCount(const Graph *g) { |
| 494 | return Graph_NodeCount(g) + Graph_DeletedNodeCount(g); |
no test coverage detected