1 25 42 package org.jgrapht.graph; 43 44 import org.jgrapht.*; 45 46 47 54 public class SimpleGraph<V, E> 55 extends AbstractBaseGraph<V, E> 56 implements UndirectedGraph<V, E> 57 { 58 59 61 private static final long serialVersionUID = 3545796589454112304L; 62 63 65 70 public SimpleGraph(EdgeFactory<V, E> ef) 71 { 72 super(ef, false, false); 73 } 74 75 80 public SimpleGraph(Class <? extends E> edgeClass) 81 { 82 this(new ClassBasedEdgeFactory<V, E>(edgeClass)); 83 } 84 } 85 | Popular Tags |