Package science.aist.gtf.graph.analyzer
Class VerticesHaveEdgesAnalyzer<V,E>
- java.lang.Object
-
- science.aist.gtf.graph.analyzer.VerticesHaveEdgesAnalyzer<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 VerticesHaveEdgesAnalyzer<V,E> extends Object implements GraphAnalyzer<V,E,Boolean>
Analyzes if every vertex in the graph has at least a single edge
- Since:
- 1.0
- Author:
- Andreas Pointner
-
-
Constructor Summary
Constructors Constructor Description VerticesHaveEdgesAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
analyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)
Analyzes a graph state
-
-
-
Method Detail
-
analyzeGraphState
public Boolean analyzeGraphState(GraphStateAccessor<V,E> graphStateAccessor)
Description copied from interface:GraphAnalyzer
Analyzes a graph state- Specified by:
analyzeGraphState
in interfaceGraphAnalyzer<V,E,Boolean>
- Parameters:
graphStateAccessor
- the graph state to be analyzed- Returns:
- the analyze result
-
-