本文整理匯總了Java中org.jgrapht.graph.DefaultDirectedGraph類的典型用法代碼示例。如果您正苦於以下問題:Java DefaultDirectedGraph類的具體用法?Java DefaultDirectedGraph怎麽用?Java DefaultDirectedGraph使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
DefaultDirectedGraph類屬於org.jgrapht.graph包,在下文中一共展示了DefaultDirectedGraph類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testComplexDag
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testComplexDag() {
DirectedGraph<String, DefaultEdge> g = new DefaultDirectedGraph<String, DefaultEdge>(DefaultEdge.class);
g.addVertex("a");
g.addVertex("b");
g.addVertex("c");
g.addVertex("d");
g.addVertex("e");
g.addVertex("f");
g.addVertex("g");
g.addEdge("a", "b");
g.addEdge("b", "c");
g.addEdge("c", "d");
g.addEdge("d", "f");
g.addEdge("b", "e");
g.addEdge("e", "f");
g.addEdge("f", "g");
g.addEdge("a", "f");
Assert.assertEquals("b", new TarjanLowestCommonAncestor<String, DefaultEdge>(g).calculate("a", "e", "c"));
}
示例2: getGraph
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
/**
* Convert an FNSS Topology to a JGraphT graph.
*
* @param topology FNSS Topology object
* @return A JGraphT graph
*/
public static Graph<String, Edge> getGraph(Topology topology) {
Graph<String, Edge> graph = null;
if (topology.isDirected()) {
graph = new DefaultDirectedGraph<String, Edge>(Edge.class);
} else {
graph = new SimpleGraph<String, Edge>(Edge.class);
}
for(String node : topology.getAllNodes()) {
graph.addVertex(node);
}
for(Pair<String, String> endpoints : topology.getAllEdges()) {
Edge edge = topology.getEdge(endpoints);
graph.addEdge(endpoints.getU(), endpoints.getV(), edge);
}
return graph;
}
示例3: testExecute
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testExecute() throws Exception {
// GIVEN
final Node n1 = graphElementFactory.createNode("n1", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 1l).build());
final Node n2 = graphElementFactory.createNode("n2", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 2l).build());
final Edge e1 = graphElementFactory.createEdge(n1, n2, "e1", Arrays.asList("E"),
ImmutableMap.<String, Object>builder().put("id", 3l).build());
final Graph<Node, Edge> graph = new DefaultDirectedGraph<>(new ClassBasedEdgeFactory<>(Edge.class));
graph.addVertex(n1);
graph.addVertex(n2);
graph.addEdge(e1.getSourceNode(), e1.getTargetNode(), e1);
// WHEN
operation.execute(connection, graph);
// THEN
final ArgumentCaptor<String> queryCaptor = ArgumentCaptor.forClass(String.class);
verify(operation).executeQuery(eq(connection), queryCaptor.capture());
final String query = queryCaptor.getValue();
assertThat(query, containsString("CREATE (n1:A {id:1}),(n2:A {id:2}),(n1)-[e1:E {id:3}]->(n2)"));
}
示例4: testExecute
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testExecute() throws Exception {
// GIVEN
final Node n1 = graphElementFactory.createNode("n1", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 1l).build());
final Node n2 = graphElementFactory.createNode("n2", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 2l).build());
final Edge e1 = graphElementFactory.createEdge(n1, n2, "e1", Arrays.asList("E"), Collections.emptyMap());
final Graph<Node, Edge> graph = new DefaultDirectedGraph<>(new ClassBasedEdgeFactory<>(Edge.class));
graph.addVertex(n1);
graph.addVertex(n2);
graph.addEdge(e1.getSourceNode(), e1.getTargetNode(), e1);
// WHEN
operation.execute(connection, graph);
// THEN
final ArgumentCaptor<String> queryCaptor = ArgumentCaptor.forClass(String.class);
verify(operation, times(2)).executeQuery(eq(connection), queryCaptor.capture());
final String query = queryCaptor.getValue();
assertThat(query, containsString("MATCH (n:A) DETACH DELETE n"));
}
示例5: testExecute
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testExecute() throws Exception {
// GIVEN
final Node n1 = graphElementFactory.createNode("n1", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 1l).put("value", "A").build());
final Node n2 = graphElementFactory.createNode("n2", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 2l).build());
final Edge e1 = graphElementFactory.createEdge(n1, n2, "e1", Arrays.asList("E"),
ImmutableMap.<String, Object>builder().put("id", 3l).put("value", "C").build());
final Graph<Node, Edge> graph = new DefaultDirectedGraph<>(new ClassBasedEdgeFactory<>(Edge.class));
graph.addVertex(n1);
graph.addVertex(n2);
graph.addEdge(e1.getSourceNode(), e1.getTargetNode(), e1);
// WHEN
operation.execute(connection, graph);
// THEN
final ArgumentCaptor<String> queryCaptor = ArgumentCaptor.forClass(String.class);
verify(operation, times(2)).executeQuery(eq(connection), queryCaptor.capture());
final List<String> queries = queryCaptor.getAllValues();
assertThat(queries.get(0), containsString("MATCH (n1:A {id:1}) SET n1.value=\"A\""));
assertThat(queries.get(1), containsString("MATCH (n1:A {id:1}),(n2:A {id:2}) MERGE (n1)-[e1:E]->(n2) SET e1.id=3,e1.value=\"C\""));
}
示例6: testExecute
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testExecute() throws Exception {
// GIVEN
final Node n1 = graphElementFactory.createNode("n1", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 1l).put("value", "A").build());
final Node n2 = graphElementFactory.createNode("n2", Arrays.asList("A"),
ImmutableMap.<String, Object>builder().put("id", 2l).build());
final Edge e1 = graphElementFactory.createEdge(n1, n2, "e1", Arrays.asList("E"),
ImmutableMap.<String, Object>builder().put("id", 3l).put("value", "C").build());
final Graph<Node, Edge> graph = new DefaultDirectedGraph<>(new ClassBasedEdgeFactory<>(Edge.class));
graph.addVertex(n1);
graph.addVertex(n2);
graph.addEdge(e1.getSourceNode(), e1.getTargetNode(), e1);
// WHEN
operation.execute(connection, graph);
// THEN
final ArgumentCaptor<String> queryCaptor = ArgumentCaptor.forClass(String.class);
verify(operation, times(3)).executeQuery(eq(connection), queryCaptor.capture());
final List<String> queries = queryCaptor.getAllValues();
assertThat(queries.get(0), containsString("MERGE (n1:A {id:1}) SET n1.value=\"A\""));
assertThat(queries.get(1), containsString("MERGE (n2:A {id:2})"));
assertThat(queries.get(2), containsString("MATCH (n1:A {id:1}),(n2:A {id:2}) MERGE (n1)-[e1:E]->(n2) SET e1.id=3,e1.value=\"C\""));
}
示例7: initDependencyGraph
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
private DirectedGraph<Dependency, DefaultEdge> initDependencyGraph(List<Dependency> dependencies, Map<Dependency, Set<AttributeRef>> affectedAttributes, Map<Dependency, Set<AttributeRef>> queriedAttributes) {
DirectedGraph<Dependency, DefaultEdge> dependencyGraph = new DefaultDirectedGraph<Dependency, DefaultEdge>(DefaultEdge.class);
for (Dependency dependency : dependencies) {
dependencyGraph.addVertex(dependency);
}
for (int i = 0; i < dependencies.size(); i++) {
Dependency d1 = dependencies.get(i);
for (int j = 0; j < dependencies.size(); j++) {
if (i == j) {
continue;
}
Dependency d2 = dependencies.get(j);
if (haveOverlap(d1, d2, affectedAttributes, queriedAttributes)) {
if (logger.isDebugEnabled()) logger.debug("Edge btw " + d1.getId() + " and " + d2.getId());
dependencyGraph.addEdge(d1, d2);
}
}
}
return dependencyGraph;
}
示例8: computeReverseJGraph
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
/**
* Returns a reverted version of this graph in a jGraph
*
* That is a graph containing exactly the same nodes as this one but for
* each edge from v1 to v2 in this graph the resulting graph will contain an
* edge from v2 to v1 - or in other words the reverted edge
*
* This is used to revert CFGs in order to determine control dependencies
* for example
*
* @return a {@link org.jgrapht.graph.DefaultDirectedGraph} object.
*/
protected DefaultDirectedGraph<V, E> computeReverseJGraph() {
DefaultDirectedGraph<V, E> r = new DefaultDirectedGraph<V, E>(edgeClass);
for (V v : vertexSet())
if (!r.addVertex(v))
throw new IllegalStateException(
"internal error while adding vertices");
for (E e : edgeSet()) {
V src = getEdgeSource(e);
V target = getEdgeTarget(e);
if (r.addEdge(target, src) == null)
throw new IllegalStateException(
"internal error while adding reverse edges");
}
return r;
}
示例9: createGraphFrom
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Override public @NonNull DirectedGraph<String, DefaultEdge> createGraphFrom(
final @NonNull Set<? extends NodeDescriptor> identities) {
requireNonNull(identities);
final DefaultDirectedGraph<String, DefaultEdge> graph = new DefaultDirectedGraph<>(DefaultEdge.class);
identities.forEach(identity -> graph.addVertex(identity.id()));
final List<String> sortedIds = identities.stream()
.map(NodeDescriptor::id)
.sorted()
.collect(Collectors.toList());
sortedIds.stream().reduce(getLast(sortedIds), (nodeIdentity1, nodeIdentity2) -> {
graph.addEdge(nodeIdentity1, nodeIdentity2);
return nodeIdentity2;
});
return new UnmodifiableDirectedGraph<>(graph);
}
示例10: getTopology
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
protected StormTopology getTopology() {
// Crawl the graph and create execution pipelines to be run in the bolts.
ft.logicalToBoltGraph();
// Now, convert the bolt graph to a topology.
TopologyBuilder builder = new TopologyBuilder();
// Create the coordinator spout.
builder.setSpout("FlexyMaster", new FlexyMasterSpout());
// Start from the leaves and walk to the spouts using DFS.
Set<FlexyBolt> built_memo = new HashSet<FlexyBolt>();
DefaultDirectedGraph<FlexyBolt, IndexedEdge<FStream>> boltG = ft.getBoltG();
for (FlexyBolt b : boltG.vertexSet()) {
if (boltG.outDegreeOf(b) == 0) {
_visitAndBuild(b, built_memo, builder);
}
}
return builder.createTopology();
}
示例11: buildEGDStrataGraph
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
private DirectedGraph<EGDStratum, DefaultEdge> buildEGDStrataGraph(DirectedGraph<ExtendedEGD, DefaultEdge> dependencyGraph, List<EGDStratum> egdStrata) {
DirectedGraph<EGDStratum, DefaultEdge> strataGraph = new DefaultDirectedGraph<EGDStratum, DefaultEdge>(DefaultEdge.class);
for (EGDStratum stratum : egdStrata) {
strataGraph.addVertex(stratum);
}
for (EGDStratum stratumA : egdStrata) {
for (EGDStratum stratumB : egdStrata) {
if(stratumA.equals(stratumB)){
continue;
}
if (existsPath(dependencyGraph, stratumA, stratumB)) {
strataGraph.addEdge(stratumA, stratumB);
}
}
}
return strataGraph;
}
示例12: buildStrataGraph
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
private DirectedGraph<TGDStratum, DefaultEdge> buildStrataGraph(DirectedGraph<Dependency, DefaultEdge> dependencyGraph, List<TGDStratum> tgdStrata) {
DirectedGraph<TGDStratum, DefaultEdge> strataGraph = new DefaultDirectedGraph<TGDStratum, DefaultEdge>(DefaultEdge.class);
for (TGDStratum stratum : tgdStrata) {
strataGraph.addVertex(stratum);
}
for (TGDStratum stratumA : tgdStrata) {
for (TGDStratum stratumB : tgdStrata) {
if(stratumA.equals(stratumB)){
continue;
}
if (existsPath(dependencyGraph, stratumA, stratumB)) {
strataGraph.addEdge(stratumA, stratumB);
}
}
}
return strataGraph;
}
示例13: testBinaryTree
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testBinaryTree() {
DirectedGraph<String, DefaultEdge> g = new DefaultDirectedGraph<String, DefaultEdge>(DefaultEdge.class);
g.addVertex("a");
g.addVertex("b");
g.addVertex("c");
g.addVertex("d");
g.addVertex("e");
g.addEdge("a", "b");
g.addEdge("b", "c");
g.addEdge("b", "d");
g.addEdge("d", "e");
Assert.assertEquals("b", new TarjanLowestCommonAncestor<String, DefaultEdge>(g).calculate("a", "c", "e"));
Assert.assertEquals("b", new TarjanLowestCommonAncestor<String, DefaultEdge>(g).calculate("a", "b", "d"));
Assert.assertEquals("d", new TarjanLowestCommonAncestor<String, DefaultEdge>(g).calculate("a", "d", "e"));
}
示例14: build
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
private void build(Task task, ImmutableList.Builder<RunnableTaskDag> entriesBuilder, ImmutableMap.Builder<TaskId, Task> tasksBuilder)
{
DefaultDirectedGraph<TaskId, DefaultEdge> graph = new DefaultDirectedGraph<>(DefaultEdge.class);
worker(graph, task, null, tasksBuilder, Sets.newHashSet());
CycleDetector<TaskId, DefaultEdge> cycleDetector = new CycleDetector<>(graph);
if ( cycleDetector.detectCycles() )
{
throw new RuntimeException("The Task DAG contains cycles: " + task);
}
TopologicalOrderIterator<TaskId, DefaultEdge> orderIterator = new TopologicalOrderIterator<>(graph);
while ( orderIterator.hasNext() )
{
TaskId taskId = orderIterator.next();
Set<DefaultEdge> taskIdEdges = graph.edgesOf(taskId);
Set<TaskId> processed = taskIdEdges
.stream()
.map(graph::getEdgeSource)
.filter(edge -> !edge.equals(taskId) && !edge.getId().equals(""))
.collect(Collectors.toSet());
entriesBuilder.add(new RunnableTaskDag(taskId, processed));
}
}
示例15: testAddEdgeWithMissingVertices
import org.jgrapht.graph.DefaultDirectedGraph; //導入依賴的package包/類
@Test
public void testAddEdgeWithMissingVertices() {
Graph<String, String> graph = new DefaultDirectedGraph<>(new EdgeFactory<String, String>() {
public String createEdge(String sourceVertex, String targetVertex) {
return sourceVertex + targetVertex;
};
});
graph = new AddVerticesAutomatically<>(graph);
graph.addEdge("A", "B");
graph.addEdge("A", "C", "DEF");
assertTrue(graph.containsVertex("A"));
assertTrue(graph.containsVertex("B"));
assertTrue(graph.containsVertex("C"));
assertTrue(graph.containsEdge("AB"));
assertTrue(graph.containsEdge("DEF"));
}