graph.core.DirectedGraph Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-compiler Show documentation
Show all versions of astra-compiler Show documentation
Core compiler artifact for the ASTRA Language
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);
}