GraphLab Project

graphlab.plugins.reports
Class Reports

java.lang.Object
  extended by graphlab.plugins.reports.Reports

public class Reports
extends java.lang.Object

Author:
Azin Azadi

Constructor Summary
Reports()
           
 
Method Summary
static int getMaxIndependentSetSize(GraphModel graph, boolean putFirstVertexInSet)
           
static int getNumOfConnectedComponents(GraphModel graph)
           
static int getNumOfQuadrangles(GraphModel graph)
           
static int getNumOfTriangles(GraphModel graph)
           
static int girthSize(GraphModel graph)
           
static boolean isEulerian(GraphModel graph)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Reports

public Reports()
Method Detail

getMaxIndependentSetSize

public static int getMaxIndependentSetSize(GraphModel graph,
                                           boolean putFirstVertexInSet)
See Also:
MaxIndependentSetReport.getMaxIndependentSetSize(graphlab.graph.graph.GraphModel,boolean)

girthSize

public static int girthSize(GraphModel graph)
See Also:
GirthSize.getgirthSize(graphlab.graph.graph.GraphModel)

isEulerian

public static boolean isEulerian(GraphModel graph)
See Also:
IsEulerian.isEulerian(graphlab.graph.graph.GraphModel)

getNumOfConnectedComponents

public static int getNumOfConnectedComponents(GraphModel graph)
See Also:
NumOfConnectedComponents.getNumOfConnectedComponents(graphlab.graph.graph.GraphModel)

getNumOfQuadrangles

public static int getNumOfQuadrangles(GraphModel graph)
See Also:
NumOfQuadrangle.getNumOfQuadrangles(graphlab.graph.graph.GraphModel)

getNumOfTriangles

public static int getNumOfTriangles(GraphModel graph)
See Also:
NumOfTriangles.getNumOfTriangles(graphlab.graph.graph.GraphModel)

GraphLab Project