Class GeneralEdge<T>

java.lang.Object
org.tweetyproject.graphs.GeneralEdge<T>
Type Parameters:
T - the type of nodes connected by this edge.
Direct Known Subclasses:
Edge, HyperDirEdge

public abstract class GeneralEdge<T> extends Object
The `GeneralEdge` class represents a general structure for edges in a graph.

This abstract class is parameterized with the type `T`, which represents the type of nodes connected by this edge. Subclasses of `GeneralEdge` should provide implementations that define specific types of edges in a graph, such as directed or undirected edges.

Since this class is abstract, it cannot be instantiated directly. It is intended to be extended by more specific edge types, which will define additional properties and behaviors of edges in a graph.

Author:
Sebastian Franke