Пример #1
0
 /**
  * Answer true if the given enhanced graph contains the same nodes and edges as this graph. The
  * default implementation delegates this to the underlying graph objects.
  *
  * @param eg A graph to test
  * @return True if eg is a graph with the same structure as this.
  */
 public final boolean isIsomorphicWith(EnhGraph eg) {
   return graph.isIsomorphicWith(eg.graph);
 }