本文整理了Java中com.github.rinde.rinsim.geom.Graph.merge()
方法的一些代码示例,展示了Graph.merge()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Graph.merge()
方法的具体详情如下:
包路径:com.github.rinde.rinsim.geom.Graph
类名称: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);
内容来源于网络,如有侵权,请联系作者删除!