All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graph.core.DirectedGraph Maven / Gradle / Ivy

There is a newer version: 1.4.3
Show newest version
package graph.core;

import java.util.LinkedList;

public interface DirectedGraph extends Graph {
	public boolean isSource(Edge edge, Vertex vertex);
	public boolean isTarget(Edge edge, Vertex vertex);
	public Vertex source(Edge edge);
	public Vertex target(Edge edge);
	public LinkedList> outEdges(Vertex vertex);
	public LinkedList> inEdges(Vertex vertex);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy