Add edge tagging

This commit is contained in:
2019-01-13 14:49:05 +01:00
parent 004ee52ae4
commit 4887235d61
3 changed files with 34 additions and 17 deletions

View File

@@ -6,6 +6,7 @@
/// Struct for the edge
typedef struct edge {
bool chosen;
int u, v;
} edge_t;