Package science.aist.gtf.graph.analyzer
Class NumberOfEdgesAnalyzer<V,E>
- java.lang.Object
-
- science.aist.gtf.graph.analyzer.NumberOfEdgesAnalyzer<V,E>
-
- Type Parameters:
V- the type of the decorated vertex valueE- the type of the decorated edge value
- All Implemented Interfaces:
GraphAnalyzer<V,E,Integer>
public class NumberOfEdgesAnalyzer<V,E> extends Object implements GraphAnalyzer<V,E,Integer>
Returns the number of edges in the graph state
- Since:
- 1.0
- Author:
- Andreas Pointner
-
-
Constructor Summary
Constructors Constructor Description NumberOfEdgesAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegeranalyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)Analyzes a graph state
-
-
-
Method Detail
-
analyzeGraphState
public Integer analyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)
Description copied from interface:GraphAnalyzerAnalyzes a graph state- Specified by:
analyzeGraphStatein interfaceGraphAnalyzer<V,E,Integer>- Parameters:
graphStateAccessor- the graph state to be analyzed- Returns:
- the analyze result
-
-