Most Wins, Smallest Loss

Violation of Negative Involvement

Profile type: Profile
Config: 4 c, 7 v
Parameters:

3 wins in the full profile, but 3 is a loser after removing a voter with the ranking (np.int64(2), np.int64(0), np.int64(1), np.int64(3)):

Full profile
+---+---+---+
| 3 | 2 | 2 |
+---+---+---+
| 1 | 2 | 3 |
| 3 | 0 | 2 |
| 2 | 1 | 0 |
| 0 | 3 | 1 |
+---+---+---+
Profile([[1, 3, 2, 0], [2, 0, 1, 3], [3, 2, 0, 1]], rcounts=[3, 2, 2], cmap={0: '0', 1: '1', 2: '2', 3: '3'})
Most Wins, Smallest Loss winners are {2, 3}

Profile with voter removed
+---+---+---+
| 3 | 1 | 2 |
+---+---+---+
| 1 | 2 | 3 |
| 3 | 0 | 2 |
| 2 | 1 | 0 |
| 0 | 3 | 1 |
+---+---+---+
Profile([[1, 3, 2, 0], [2, 0, 1, 3], [3, 2, 0, 1]], rcounts=[3, 1, 2], cmap={0: '0', 1: '1', 2: '2', 3: '3'})
Most Wins, Smallest Loss winner is {1}