| 48 | } |
| 49 | |
| 50 | uint64_t GraphStatistics_NodeCount |
| 51 | ( |
| 52 | const GraphStatistics *stats, |
| 53 | LabelID l |
| 54 | ) { |
| 55 | ASSERT(stats != NULL); |
| 56 | ASSERT(l < ((LabelID)array_len(stats->node_count))); |
| 57 | |
| 58 | if(l < 0) { |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | return stats->node_count[l]; |
| 63 | } |
| 64 | |
| 65 | void GraphStatistics_FreeInternals |
| 66 | ( |
no test coverage detected