| 157 | } |
| 158 | |
| 159 | static int get_node_count(void) { |
| 160 | cbm_store_t *s = open_store(); |
| 161 | if (!s) |
| 162 | return -1; |
| 163 | int c = cbm_store_count_nodes(s, g_project); |
| 164 | cbm_store_close(s); |
| 165 | return c; |
| 166 | } |
| 167 | |
| 168 | static int get_edge_count(void) { |
| 169 | cbm_store_t *s = open_store(); |
no test coverage detected