Snorre Åldstedt
- Total activity 5
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 1
Activity overview
Latest activity by Snorre Åldstedt-
Snorre Åldstedt commented,
I found the fault, the code didn't account for parallel edges, so if there was parallel edges, the dictionary x only took the last value that it read. Otherwise I think the code is okay
-
Snorre Åldstedt created a post,
Model not finding maximum
Answeredimport gurobipy as gp from gurobipy import GRB def maximum_weighted_matching(vertices, edges): """ Compute the maximal matching of a given multigraph vertices - The number of vertice...