Package science.aist.gtf.graph.validator
Interface GraphStateValidator<V,E>
-
- Type Parameters:
V
- the type of the decorated vertex valueE
- the type of the decorated edge value
- All Known Implementing Classes:
DefaultRulesGraphStateValidatorImpl
,RuleBasedGraphStateValidatorImpl
public interface GraphStateValidator<V,E>
Calculates if the given graph state is valid
- Since:
- 1.0
- Author:
- Andreas Pointner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isValidGraphState(GraphStateAccessor<V,E> graphState)
verifies if a given graph state confirms to a given ruleset
-
-
-
Method Detail
-
isValidGraphState
boolean isValidGraphState(GraphStateAccessor<V,E> graphState)
verifies if a given graph state confirms to a given ruleset- Parameters:
graphState
- the graph state to be verified- Returns:
- to if the graph state is valid
-
-