Class AbstractGraph<V,E>

java.lang.Object
com.jgalgo.graph.AbstractGraph<V,E>
Type Parameters:
V - the vertices type
E - the edges type
All Implemented Interfaces:
Graph<V,E>
Direct Known Subclasses:
GuavaNetworkWrapper, JGraphTWrapper

public abstract class AbstractGraph<V,E> extends Object implements Graph<V,E>
Abstract implementation of Graph.

This class provides default implementations for equals(Object), hashCode() and toString().

Author:
Barak Ugav
  • Constructor Details

    • AbstractGraph

      public AbstractGraph()
      Create a new abstract graph.
  • Method Details