/* ========================================== * JGraphT : a free Java graph-theory library * ========================================== * * Project Info: http://jgrapht.sourceforge.net/ * Project Creator: Barak Naveh (http://sourceforge.net/users/barak_naveh) * * (C) Copyright 2003-2009, by Barak Naveh and Contributors. * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public * License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software Foundation, * Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. */ /* ------------------------- * DirectedGraphUnion.java * ------------------------- * (C) Copyright 2009-2009, by Ilya Razenshteyn * * Original Author: Ilya Razenshteyn and Contributors. * * $Id: DirectedGraphUnion.java 695 2009-07-06 02:18:35Z perfecthash $ * * Changes * ------- * 02-Feb-2009 : Initial revision (IR); * */ package edu.nd.nina.graph; import java.util.*; import edu.nd.nina.*; import edu.nd.nina.util.*; public class DirectedGraphUnion<V, E> extends GraphUnion<V, E, DirectedGraph<V, E>> implements DirectedGraph<V, E> { //~ Static fields/initializers --------------------------------------------- private static final long serialVersionUID = -740199233080172450L; //~ Constructors ----------------------------------------------------------- DirectedGraphUnion( DirectedGraph<V, E> g1, DirectedGraph<V, E> g2, WeightCombiner operator) { super(g1, g2, operator); } DirectedGraphUnion(DirectedGraph<V, E> g1, DirectedGraph<V, E> g2) { super(g1, g2); } //~ Methods ---------------------------------------------------------------- public int inDegreeOf(V vertex) { Set<E> res = incomingEdgesOf(vertex); return res.size(); } public Set<E> incomingEdgesOf(V vertex) { Set<E> res = new HashSet<E>(); if (getG1().containsVertex(vertex)) { res.addAll(getG1().incomingEdgesOf(vertex)); } if (getG2().containsVertex(vertex)) { res.addAll(getG2().incomingEdgesOf(vertex)); } return Collections.unmodifiableSet(res); } public int outDegreeOf(V vertex) { Set<E> res = outgoingEdgesOf(vertex); return res.size(); } public Set<E> outgoingEdgesOf(V vertex) { Set<E> res = new HashSet<E>(); if (getG1().containsVertex(vertex)) { res.addAll(getG1().outgoingEdgesOf(vertex)); } if (getG2().containsVertex(vertex)) { res.addAll(getG2().outgoingEdgesOf(vertex)); } return Collections.unmodifiableSet(res); } } // End DirectedGraphUnion.java