| 150 | } |
| 151 | |
| 152 | static int get_node_count(void) { |
| 153 | cbm_store_t *s = open_store(); |
| 154 | if (!s) |
| 155 | return -1; |
| 156 | int c = cbm_store_count_nodes(s, g_project); |
| 157 | cbm_store_close(s); |
| 158 | return c; |
| 159 | } |
| 160 | |
| 161 | static int get_edge_count(void) { |
| 162 | cbm_store_t *s = open_store(); |
no test coverage detected