Package net.automatalib.graph
Interface Graph.IntAbstraction<E>
-
- Type Parameters:
E- edge type
- All Superinterfaces:
FiniteRepresentation,SimpleGraph.IntAbstraction
- All Known Subinterfaces:
BidirectionalGraph.IntAbstraction<E>,MutableGraph.IntAbstraction<E,NP,EP>,UniversalGraph.IntAbstraction<E,NP,EP>
public static interface Graph.IntAbstraction<E> extends SimpleGraph.IntAbstraction
Interface fornode integer abstractionsof aGraph.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Collection<E>getEdgesBetween(int from, int to)(Finite) int-abstracted version ofIndefiniteGraph.getEdgesBetween(Object, Object).intgetIntTarget(E edge)Int-abstracted version ofIndefiniteGraph.getTarget(Object).Collection<E>getOutgoingEdges(int node)Int-abstracted version ofGraph.getOutgoingEdges(Object).default Iterator<E>getOutgoingEdgesIterator(int node)Int-abstracted version ofGraph.getOutgoingEdgesIterator(Object).default booleanisConnected(int source, int target)Int-abstracted version ofIndefiniteSimpleGraph.isConnected(Object, Object).-
Methods inherited from interface net.automatalib.automaton.concept.FiniteRepresentation
size
-
-
-
-
Method Detail
-
getOutgoingEdges
Collection<E> getOutgoingEdges(int node)
Int-abstracted version ofGraph.getOutgoingEdges(Object).
-
getIntTarget
int getIntTarget(E edge)
Int-abstracted version ofIndefiniteGraph.getTarget(Object).
-
getOutgoingEdgesIterator
default Iterator<E> getOutgoingEdgesIterator(int node)
Int-abstracted version ofGraph.getOutgoingEdgesIterator(Object).
-
getEdgesBetween
default Collection<E> getEdgesBetween(int from, int to)
(Finite) int-abstracted version ofIndefiniteGraph.getEdgesBetween(Object, Object).
-
isConnected
default boolean isConnected(int source, int target)Int-abstracted version ofIndefiniteSimpleGraph.isConnected(Object, Object).- Specified by:
isConnectedin interfaceSimpleGraph.IntAbstraction
-
-