Example #1
0
 public static int getNetworkConnectionCount(GXLGraph cArch) {
   int count = 0;
   for (int y = 0; y < cArch.getGraphElementCount(); ++y) {
     if (cArch.getGraphElementAt(y) instanceof GXLEdge) ++count;
   }
   return count;
 }
Example #2
0
 // This this needs this loop, because the network edges are attached
 // to the cArch rather than the mArch
 public static int getMachinesCount(GXLGraph cArch) {
   int count = 0;
   for (int y = 0; y < cArch.getGraphElementCount(); ++y) {
     if (cArch.getGraphElementAt(y) instanceof GXLNode) ++count;
   }
   return count;
 }
Example #3
0
 public static GXLEdge getLogicalProcessorConnectionAt(GXLGraph e, int y) {
   int all = e.getGraphElementCount();
   int lcount = 0;
   for (int r = 0; r < all; ++r) {
     if (e.getGraphElementAt(r) instanceof GXLNode) ++lcount;
   }
   return (GXLEdge) e.getGraphElementAt(lcount + y);
 }
Example #4
0
 public static int getLogicalProcessorCount(GXLGraph e) {
   int all = e.getGraphElementCount();
   int lcount = 0;
   for (int r = 0; r < all; ++r) {
     if (e.getGraphElementAt(r) instanceof GXLNode) ++lcount;
   }
   return lcount;
 }
Example #5
0
 public static int getClusterCount(GXLGraph graph) {
   return graph.getGraphElementCount();
 }