decrement the node counter by amount
| 71 | |
| 72 | // decrement the node counter by amount |
| 73 | static inline void GraphStatistics_DecNodeCount |
| 74 | ( |
| 75 | GraphStatistics *stats, |
| 76 | int l, |
| 77 | uint64_t amount |
| 78 | ) { |
| 79 | ASSERT(l < array_len(stats->node_count) && stats->node_count[l] >= amount); |
| 80 | stats->node_count[l] -= amount; |
| 81 | } |
| 82 | |
| 83 | // retrieves edge count for given relationship type |
| 84 | uint64_t GraphStatistics_EdgeCount |
no test coverage detected