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

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy