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