com.ajjpj.afoundation.collection.graph.AEdge Maven / Gradle / Ivy
The newest version!
package com.ajjpj.afoundation.collection.graph;
/**
* This is the minimal abstraction for an edge in a directed graph: An edge points from one node to another node.
*
* @author arno
*/
public interface AEdge {
N getFrom();
N getTo();
}