All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgrapht.graph.GraphUnion Maven / Gradle / Ivy

/* ==========================================
 * 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 program and the accompanying materials are dual-licensed under
 * either
 *
 * (a) the terms of the GNU Lesser General Public License version 2.1
 * as published by the Free Software Foundation, or (at your option) any
 * later version.
 *
 * or (per the licensee's choosing)
 *
 * (b) the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation.
 */
/* -------------------------
 * GraphUnion.java
 * -------------------------
 * (C) Copyright 2009-2009, by Ilya Razenshteyn
 *
 * Original Author:  Ilya Razenshteyn and Contributors.
 *
 * $Id$
 *
 * Changes
 * -------
 * 02-Feb-2009 : Initial revision (IR);
 *
 */
package org.jgrapht.graph;

import java.io.*;

import java.util.*;

import org.jgrapht.*;
import org.jgrapht.util.*;


/**
 * 

Read-only union of two graphs: G1 and G2. If * G1 = (V1, E1) and G2 = * (V2, E2) then their union G = (V, E), where V is the * union of V1 and V2, and E is the union of E1 * and E1.

* *

GraphUnion implements Graph interface. * GraphUnion uses WeightCombiner to choose policy for calculating * edge weight.

*/ public class GraphUnion> extends AbstractGraph implements Serializable { private static final long serialVersionUID = -740199233080172450L; private static final String READ_ONLY = "union of graphs is read-only"; private G g1; private G g2; private WeightCombiner operator; public GraphUnion(G g1, G g2, WeightCombiner operator) { if (g1 == null) { throw new NullPointerException("g1 is null"); } if (g2 == null) { throw new NullPointerException("g2 is null"); } if (g1 == g2) { throw new IllegalArgumentException("g1 is equal to g2"); } this.g1 = g1; this.g2 = g2; this.operator = operator; } public GraphUnion(G g1, G g2) { this(g1, g2, WeightCombiner.SUM); } public Set getAllEdges(V sourceVertex, V targetVertex) { Set res = new HashSet(); if (g1.containsVertex(sourceVertex) && g1.containsVertex(targetVertex)) { res.addAll(g1.getAllEdges(sourceVertex, targetVertex)); } if (g2.containsVertex(sourceVertex) && g2.containsVertex(targetVertex)) { res.addAll(g2.getAllEdges(sourceVertex, targetVertex)); } return Collections.unmodifiableSet(res); } public E getEdge(V sourceVertex, V targetVertex) { E res = null; if (g1.containsVertex(sourceVertex) && g1.containsVertex(targetVertex)) { res = g1.getEdge(sourceVertex, targetVertex); } if ((res == null) && g2.containsVertex(sourceVertex) && g2.containsVertex(targetVertex)) { res = g2.getEdge(sourceVertex, targetVertex); } return res; } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public EdgeFactory getEdgeFactory() { throw new UnsupportedOperationException(READ_ONLY); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public E addEdge(V sourceVertex, V targetVertex) { throw new UnsupportedOperationException(READ_ONLY); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public boolean addEdge(V sourceVertex, V targetVertex, E e) { throw new UnsupportedOperationException(READ_ONLY); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public boolean addVertex(V v) { throw new UnsupportedOperationException(READ_ONLY); } public boolean containsEdge(E e) { return g1.containsEdge(e) || g2.containsEdge(e); } public boolean containsVertex(V v) { return g1.containsVertex(v) || g2.containsVertex(v); } public Set edgeSet() { Set res = new HashSet(); res.addAll(g1.edgeSet()); res.addAll(g2.edgeSet()); return Collections.unmodifiableSet(res); } public Set edgesOf(V vertex) { Set res = new HashSet(); if (g1.containsVertex(vertex)) { res.addAll(g1.edgesOf(vertex)); } if (g2.containsVertex(vertex)) { res.addAll(g2.edgesOf(vertex)); } return Collections.unmodifiableSet(res); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public E removeEdge(V sourceVertex, V targetVertex) { throw new UnsupportedOperationException(READ_ONLY); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public boolean removeEdge(E e) { throw new UnsupportedOperationException(READ_ONLY); } /** * Throws UnsupportedOperationException, because * GraphUnion is read-only. */ public boolean removeVertex(V v) { throw new UnsupportedOperationException(READ_ONLY); } public Set vertexSet() { Set res = new HashSet(); res.addAll(g1.vertexSet()); res.addAll(g2.vertexSet()); return Collections.unmodifiableSet(res); } public V getEdgeSource(E e) { if (g1.containsEdge(e)) { return g1.getEdgeSource(e); } if (g2.containsEdge(e)) { return g2.getEdgeSource(e); } return null; } public V getEdgeTarget(E e) { if (g1.containsEdge(e)) { return g1.getEdgeTarget(e); } if (g2.containsEdge(e)) { return g2.getEdgeTarget(e); } return null; } public double getEdgeWeight(E e) { if (g1.containsEdge(e) && g2.containsEdge(e)) { return operator.combine(g1.getEdgeWeight(e), g2.getEdgeWeight(e)); } if (g1.containsEdge(e)) { return g1.getEdgeWeight(e); } if (g2.containsEdge(e)) { return g2.getEdgeWeight(e); } throw new IllegalArgumentException("no such edge in the union"); } /** * @return G1 */ public G getG1() { return g1; } /** * @return G2 */ public G getG2() { return g2; } } // End GraphUnion.java




© 2015 - 2024 Weber Informatics LLC | Privacy Policy