import java.util.List;


public interface Graph {
   List<List<Edge>> getNodes();
   List<Edge> getSucc(int x);
   NodeData getData(int x);
} 
