I'm working on a tool to analyse how people vote. I have some data with a number of "policies", which are made up of expected votes on different divisions.
So for example, a policy might specify voting "for" divisions 1 and 2 and "against" divisions 3 and 4. I'll write that as {+1 +2 -3 -4}.
Many of the policies in the data set cover the same divisions, and I want to eliminate any that are strict subsets of other policies. So for example, if the above policy is in the data set, and so is {+1 -3}, I'd remove {+1 -3}.
But I also want to eliminate ones which contain the exact opposite votes of a strict subset. So if the data set contains {-2 +3 +4}, I'd want to remove that too.
I want to explain, concisely, what modifications I'm making to the original data set. So I can say that I'm removing any policy which is a subset of another. But how do I describe removing the opposites? Would "anti-subset" be understood, or is there a different term?