import rpi.goldsd.graph.*; public class ComplementTest { public static void main( String[] args ) { Graph G = new Graph( "Random Graph", 12, 0.85 ); G.printSummary(); Graph H1 = Algorithms.complement( G ); H1.printSummary(); // Algorithms.toGraphDraw( G, "ComplementTest1.html" ); // Algorithms.toGraphDraw( H1, "ComplementTest2.html" ); } }