Profile type: Profile
Config: 5 c, 3 v
Parameters: require_resoluteness=True
2 loses in the full profile, but 2 is a winner after removing voter with the ranking (2, 4, 3, 1, 0):
Full profile:
+---+---+---+
| 1 | 1 | 1 |
+---+---+---+
| 2 | 3 | 4 |
| 4 | 1 | 0 |
| 3 | 2 | 2 |
| 1 | 4 | 3 |
| 0 | 0 | 1 |
+---+---+---+
Profile([[2, 4, 3, 1, 0], [3, 1, 2, 4, 0], [4, 0, 2, 3, 1]], rcounts=[1, 1, 1], cmap={0: '0', 1: '1', 2: '2', 3: '3', 4: '4'})
Bucklin winner is {4}
Profile with voter removed:
+---+---+
| 1 | 1 |
+---+---+
| 3 | 4 |
| 1 | 0 |
| 2 | 2 |
| 4 | 3 |
| 0 | 1 |
+---+---+
Profile([[3, 1, 2, 4, 0], [4, 0, 2, 3, 1]], rcounts=[1, 1], cmap={0: '0', 1: '1', 2: '2', 3: '3', 4: '4'})
Bucklin winner is {2}