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