increment the node counter by amount
| 60 | |
| 61 | // increment the node counter by amount |
| 62 | static inline void GraphStatistics_IncNodeCount |
| 63 | ( |
| 64 | GraphStatistics *stats, |
| 65 | LabelID l, |
| 66 | uint64_t amount |
| 67 | ) { |
| 68 | ASSERT(l < array_len(stats->node_count)); |
| 69 | stats->node_count[l] += amount; |
| 70 | } |
| 71 | |
| 72 | // decrement the node counter by amount |
| 73 | static inline void GraphStatistics_DecNodeCount |
no test coverage detected