com.salesforce.jgrapht.alg.TransitiveClosure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
/*
* (C) Copyright 2007-2017, by Vinayak R Borkar and Contributors.
*
* JGraphT : a free Java graph-theory library
*
* 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.
*/
package com.salesforce.jgrapht.alg;
import com.salesforce.jgrapht.Graphs;
import com.salesforce.jgrapht.experimental.dag.DirectedAcyclicGraph;
import com.salesforce.jgrapht.graph.SimpleDirectedGraph;
import com.salesforce.jgrapht.traverse.TopologicalOrderIterator;
import java.util.ArrayDeque;
import java.util.Deque;
import java.util.HashSet;
import java.util.Set;
/**
* Constructs the transitive closure of the input graph.
*
* @author Vinayak R. Borkar
* @since May 5, 2007
*/
public class TransitiveClosure
{
/**
* Singleton instance.
*/
public static final TransitiveClosure INSTANCE = new TransitiveClosure();
/**
* Private Constructor.
*/
private TransitiveClosure()
{
}
/**
* Computes the transitive closure of the given graph.
*
* @param graph - Graph to compute transitive closure for.
* @param the graph vertex type
* @param the graph edge type
*/
public void closeSimpleDirectedGraph(SimpleDirectedGraph graph)
{
Set vertexSet = graph.vertexSet();
Set newEdgeTargets = new HashSet<>();
// At every iteration of the outer loop, we add a path of length 1
// between nodes that originally had a path of length 2. In the worst
// case, we need to make floor(log |V|) + 1 iterations. We stop earlier
// if there is no change to the output graph.
int bound = computeBinaryLog(vertexSet.size());
boolean done = false;
for (int i = 0; !done && (i < bound); ++i) {
done = true;
for (V v1 : vertexSet) {
newEdgeTargets.clear();
for (E v1OutEdge : graph.outgoingEdgesOf(v1)) {
V v2 = graph.getEdgeTarget(v1OutEdge);
for (E v2OutEdge : graph.outgoingEdgesOf(v2)) {
V v3 = graph.getEdgeTarget(v2OutEdge);
if (v1.equals(v3)) {
// Its a simple graph, so no self loops.
continue;
}
if (graph.getEdge(v1, v3) != null) {
// There is already an edge from v1 ---> v3, skip;
continue;
}
newEdgeTargets.add(v3);
done = false;
}
}
for (V v3 : newEdgeTargets) {
graph.addEdge(v1, v3);
}
}
}
}
/**
* Computes floor(log_2(n)) + 1
*/
private int computeBinaryLog(int n)
{
assert n >= 0;
int result = 0;
while (n > 0) {
n >>= 1;
++result;
}
return result;
}
/**
* Computes the transitive closure of a directed acyclic graph in O(n*m)
*
* @param graph - Graph to compute transitive closure for.
* @param the graph vertex type
* @param the graph edge type
*/
public void closeDirectedAcyclicGraph(DirectedAcyclicGraph graph)
{
Deque orderedVertices = new ArrayDeque<>(graph.vertexSet().size());
new TopologicalOrderIterator<>(graph).forEachRemaining(orderedVertices::addFirst);
for (V vertex : orderedVertices) {
for (V successor : Graphs.successorListOf(graph, vertex)) {
for (V closureVertex : Graphs.successorListOf(graph, successor)) {
graph.addEdge(vertex, closureVertex);
}
}
}
}
}
// End TransitiveClosure.java
© 2015 - 2025 Weber Informatics LLC | Privacy Policy