1 25 41 package org.jgrapht.graph; 42 43 import java.util.*; 44 45 import org.jgrapht.*; 46 47 48 53 public class UndirectedSubgraph<V, E> 54 extends Subgraph<V, E> 55 implements UndirectedGraph<V, E> 56 { 57 58 60 private static final long serialVersionUID = 3256728359772631350L; 61 62 64 74 public UndirectedSubgraph( 75 UndirectedGraph<V, E> base, 76 Set<V> vertexSubset, 77 Set<E> edgeSubset) 78 { 79 super(base, vertexSubset, edgeSubset); 80 } 81 } 82 | Popular Tags |