Package net.automatalib.graph.concept
Interface NodeAcceptance<N>
-
- Type Parameters:
N- node class
- All Known Subinterfaces:
AcceptanceGraph<N,E>
public interface NodeAcceptance<N>Node acceptance concept, forGraphs that represent a structure for deciding acceptance or rejection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAcceptingNode(N node)Checks whether a node is an accepting node.
-
-
-
Method Detail
-
isAcceptingNode
boolean isAcceptingNode(N node)
Checks whether a node is an accepting node.- Parameters:
node- the node- Returns:
trueif the given node is an accepting node,falseotherwise.
-
-