Given a graph (V,E)
A "independent set" of vertices as a set of vertices, of graph , which are not mutually adjucent(I mean take any two vertices from the set, thos shud not be adjucent)
A "maximal independent set" as a independent set , which is not a subset of any other independent set of the graph.
Problem is how to find out all possible maximal independent sets of the given graph,
I think it is a standard problem in graph theory, but I have no idea about it. if...