increment the edge counter by amount
| 38 | |
| 39 | // increment the edge counter by amount |
| 40 | static inline void GraphStatistics_IncEdgeCount |
| 41 | ( |
| 42 | GraphStatistics *stats, |
| 43 | RelationID r, |
| 44 | uint64_t amount |
| 45 | ) { |
| 46 | ASSERT(r < array_len(stats->edge_count)); |
| 47 | stats->edge_count[r] += amount; |
| 48 | } |
| 49 | |
| 50 | // decrement the edge counter by amount |
| 51 | static inline void GraphStatistics_DecEdgeCount |
no test coverage detected