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, forGraph
s that represent a structure for deciding acceptance or rejection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isAcceptingNode(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:
true
if the given node is an accepting node,false
otherwise.
-
-