Package science.aist.gtf.graph.analyzer
Class ConnectedGraphAnalyzer<V,E>
- java.lang.Object
 - 
- science.aist.gtf.graph.analyzer.ConnectedGraphAnalyzer<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,Boolean>
public class ConnectedGraphAnalyzer<V,E> extends Object implements GraphAnalyzer<V,E,Boolean>
Calculate if the graph state represents a connected graph, meaning every vertex can be reached. via any other vertex over any hops of edges. The edges are seen as undirected.
- Since:
 - 1.0
 - Author:
 - Andreas Pointner
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ConnectedGraphAnalyzer() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleananalyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)Analyzes a graph state 
 - 
 
- 
- 
Method Detail
- 
analyzeGraphState
public Boolean analyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)
Description copied from interface:GraphAnalyzerAnalyzes a graph state- Specified by:
 analyzeGraphStatein interfaceGraphAnalyzer<V,E,Boolean>- Parameters:
 graphStateAccessor- the graph state to be analyzed- Returns:
 - the analyze result
 
 
 - 
 
 -