Initialize the node_count and edge_count arrays
| 8 | |
| 9 | // Initialize the node_count and edge_count arrays |
| 10 | void GraphStatistics_init |
| 11 | ( |
| 12 | GraphStatistics *stats |
| 13 | ) { |
| 14 | ASSERT(stats); |
| 15 | stats->node_count = array_new(uint64_t, 0); |
| 16 | stats->edge_count = array_new(uint64_t, 0); |
| 17 | } |
| 18 | |
| 19 | void GraphStatistics_IntroduceRelationship |
| 20 | ( |