1 25 package classycle.graph; 26 27 57 public interface GraphAttributes extends Attributes { 58 59 public int getGirth(); 60 61 62 public int getRadius(); 63 64 65 public int getDiameter(); 66 67 68 public Vertex[] getCenterVertices(); 69 70 73 public int[] getEccentricities(); 74 75 79 public int[] getMaximumFragmentSizes(); 80 81 82 public int getBestFragmentSize(); 83 84 88 public Vertex[] getBestFragmenters(); 89 } | Popular Tags |