import graphlib.graphs.UndirectedGraph; import java.util.Collection; public interface CliqueFinder { Collection maxClique(UndirectedGraph graph); }