Package science.aist.gtf.graph
Interface GraphAnalyzer<V,E,R>
-
- Type Parameters:
R- result of the analysisV- the type of the decorated vertex valueE- the type of the decorated edge value
- All Known Implementing Classes:
ConnectedGraphAnalyzer,NumberOfEdgesAnalyzer,NumberOfVertexAnalyzer,VerticesHaveEdgesAnalyzer
public interface GraphAnalyzer<V,E,R>Performs an analyzes of the graph
- Since:
- 1.0
- Author:
- Andreas Pointner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RanalyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)Analyzes a graph state
-
-
-
Method Detail
-
analyzeGraphState
R analyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)
Analyzes a graph state- Parameters:
graphStateAccessor- the graph state to be analyzed- Returns:
- the analyze result
-
-