Package net.automatalib.graph
Interface BidirectionalGraph.IntAbstraction<E>
-
- Type Parameters:
E
- edge type
- All Superinterfaces:
FiniteRepresentation
,Graph.IntAbstraction<E>
,SimpleGraph.IntAbstraction
- Enclosing interface:
- BidirectionalGraph<N,E>
public static interface BidirectionalGraph.IntAbstraction<E> extends Graph.IntAbstraction<E>
Interface fornode integer abstractions
of aBidirectionalGraph
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<E>
getIncomingEdges(int node)
Int-abstracted version ofBidirectionalGraph.getIncomingEdges(Object)
.int
getIntSource(E edge)
Int-abstracted version ofBidirectionalGraph.getSource(Object)
.-
Methods inherited from interface net.automatalib.automaton.concept.FiniteRepresentation
size
-
Methods inherited from interface net.automatalib.graph.Graph.IntAbstraction
getEdgesBetween, getIntTarget, getOutgoingEdges, getOutgoingEdgesIterator, isConnected
-
-
-
-
Method Detail
-
getIncomingEdges
Collection<E> getIncomingEdges(int node)
Int-abstracted version ofBidirectionalGraph.getIncomingEdges(Object)
.
-
getIntSource
int getIntSource(E edge)
Int-abstracted version ofBidirectionalGraph.getSource(Object)
.
-
-