com.github.rinde.rinsim.geom.Graph.merge()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(0.8k)|赞(0)|评价(0)|浏览(83)

本文整理了Java中com.github.rinde.rinsim.geom.Graph.merge()方法的一些代码示例,展示了Graph.merge()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Graph.merge()方法的具体详情如下:
包路径:com.github.rinde.rinsim.geom.Graph
类名称:Graph
方法名:merge

Graph.merge介绍

[英]Merges other into this graph.
[中]将other合并到此图形中。

代码示例

代码示例来源:origin: com.github.rinde/rinsim-geom

@Override
public void merge(Graph<E> other) {
 delegate.merge(other);
}

代码示例来源:origin: rinde/RinSim

@Override
public void merge(Graph<E> other) {
 delegate.merge(other);
}

代码示例来源:origin: rinde/RinSim

@Test(expected = UnsupportedOperationException.class)
public void unmodMerge() {
 Graphs.unmodifiableGraph(graph).merge(null);
}

代码示例来源:origin: rinde/RinSim

g1.merge(graph);
assertEquals(g1, graph);
g2.merge(graph);
assertEquals(g2, graph);
assertEquals(g1, g2);
g3.merge(graph);
assertEquals(graph, g3);

相关文章