I have algorithmic problem. I don't know how to solve it. Maybe someone can help me?
I have objects. Each object has the same features. It could be illustrated in table:
Feature1 Feature2 Feature3 Feature4
Object1 1 0 1 1
Object2 0 0 0 1
Object3 0 1 1 1
Object4 0 1 0 0
Now I want to find all minimum subsets of objects. Each subset should have at least one value "1" for each feature. For table above results are two subsets: {Object1, Object3} and {Object1, Object4}. I cannot generate all possible subsets because it could take too much time.