I need to find a subset G' of a graph G that can be disconnected from G by removing some edges. I have some constraints on number of vertices and edges
- Number of removed edges should be less than e
- Number of vertices in G' should be greater than v
I believe this problem should be a version of minimum-cut max-flow and/or edge-connectivity in graph theory. I wonder if there are already some studies (exact or heuristic alg) investigating this problem?
Any help or suggestions would be really appreciated.