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

org.jgrapht.experimental.isomorphism.IsomorphismRelation 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-2008, 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.
 */
/* -----------------
 * IsomorphismRelation.java
 * -----------------
 * (C) Copyright 2005-2008, by Assaf Lehr and Contributors.
 *
 * Original Author:  Assaf Lehr
 * Contributor(s):   -
 *
 * $Id$
 *
 * Changes
 * -------
 */
package org.jgrapht.experimental.isomorphism;

import java.util.*;

import org.jgrapht.*;
import org.jgrapht.graph.*;


/**
 * Holds an isomorphism relation for two graphs. It contains a mapping between
 * the two graphs.
 *
 * 

Usage: * *

    *
  1. use getVertexCorrespondence() or * getEdgeCorrespondence() to get the mapped object in the other graph. *
* *

*

It consists of two vertexes array , the i-th vertex in the 1st array is * the isomorphic eqv. of the i-th in 2nd array. Note that the getters are * unsafe (they return the array and not a copy of it). * * @author Assaf * @since May 27, 2005 */ public class IsomorphismRelation implements GraphMapping { private List vertexList1; private List vertexList2; private GraphMapping graphMapping = null; private Graph graph1; private Graph graph2; /** */ public IsomorphismRelation( List aGraph1vertexArray, List aGraph2vertexArray, Graph g1, Graph g2) { this.vertexList1 = aGraph1vertexArray; this.vertexList2 = aGraph2vertexArray; this.graph1 = g1; this.graph2 = g2; } public String toString() { StringBuffer sb = new StringBuffer(); sb.append("vertexList1: ").append( this.vertexList1.toString()); sb.append("\tvertexList2: ").append( this.vertexList2.toString()); return sb.toString(); } public V getVertexCorrespondence(V vertex, boolean forward) { // lazy initializer for graphMapping if (graphMapping == null) { initGraphMapping(); } return graphMapping.getVertexCorrespondence(vertex, forward); } public E getEdgeCorrespondence(E edge, boolean forward) { // lazy initializer for graphMapping if (graphMapping == null) { initGraphMapping(); } return graphMapping.getEdgeCorrespondence(edge, forward); } /** * We currently have the vertexes array. From them we will construct two * maps: g1ToG2 and g2ToG1, using the array elements with the same index. */ private void initGraphMapping() { int mapSize = vertexList1.size(); Map g1ToG2 = new HashMap(mapSize); Map g2ToG1 = new HashMap(mapSize); for (int i = 0; i < mapSize; i++) { V source = this.vertexList1.get(i); V target = this.vertexList2.get(i); g1ToG2.put(source, target); g2ToG1.put(target, source); } this.graphMapping = new DefaultGraphMapping( g1ToG2, g2ToG1, this.graph1, this.graph2); } } // End IsomorphismRelation.java





© 2015 - 2024 Weber Informatics LLC | Privacy Policy