package graph; /* Do not add or remove public or protected members, or modify the signatures of * any public methods. You may add bodies to abstract methods, modify * existing bodies, or override inherited methods. */ /** An undirected graph with vertices labeled with VLABEL and edges * labeled with ELABEL. * @author */ public class UndirectedGraph extends Graph { /** An empty graph. */ public UndirectedGraph() { } @Override public boolean isDirected() { return false; } // FILL IN }