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

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

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

Graph.getOutgoingConnections介绍

暂无

代码示例

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

@Override
public Collection<Point> getOutgoingConnections(Point node) {
 return delegate.getOutgoingConnections(node);
}

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

@Override
public Collection<Point> getOutgoingConnections(Point node) {
 return delegate.getOutgoingConnections(node);
}

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

@Override
public Collection<Point> getOutgoingConnections(Point node) {
 return Collections.unmodifiableCollection(delegate
  .getOutgoingConnections(node));
}

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

@Override
public Collection<Point> getOutgoingConnections(Point node) {
 return Collections.unmodifiableCollection(delegate
  .getOutgoingConnections(node));
}

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

for (final Point outgoingPoint : graph.getOutgoingConnections(current)) {
 if (closedSet.contains(outgoingPoint)) {
  continue;

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

for (final Point outgoingPoint : graph.getOutgoingConnections(current)) {
 if (closedSet.contains(outgoingPoint)) {
  continue;

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

@Override
public void removeNode(Point node) {
 // collect data of removed connections but only if there is a listener
 final List<Connection<?>> removedConnections = newArrayList();
 if (eventDispatcher.hasListenerFor(EventTypes.REMOVE_CONNECTION)) {
  for (final Point p : delegate.getIncomingConnections(node)) {
   removedConnections.add(delegate.getConnection(p, node));
  }
  for (final Point p : delegate.getOutgoingConnections(node)) {
   removedConnections.add(delegate.getConnection(node, p));
  }
 }
 delegate.removeNode(node);
 // notify listeners
 for (final Connection<?> c : removedConnections) {
  eventDispatcher.dispatchEvent(new GraphEvent(
   EventTypes.REMOVE_CONNECTION, this, c));
 }
}

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

@Override
public void removeNode(Point node) {
 // collect data of removed connections but only if there is a listener
 final List<Connection<?>> removedConnections = newArrayList();
 if (eventDispatcher.hasListenerFor(EventTypes.REMOVE_CONNECTION)) {
  for (final Point p : delegate.getIncomingConnections(node)) {
   removedConnections.add(delegate.getConnection(p, node));
  }
  for (final Point p : delegate.getOutgoingConnections(node)) {
   removedConnections.add(delegate.getConnection(node, p));
  }
 }
 delegate.removeNode(node);
 // notify listeners
 for (final Connection<?> c : removedConnections) {
  eventDispatcher.dispatchEvent(new GraphEvent(
   EventTypes.REMOVE_CONNECTION, this, c));
 }
}

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

conns.addAll(graph.getOutgoingConnections(p));

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

@Test
public void outgoingConnectionsOrder() {
 final Point outgoing = new Point(0, 0);
 final Point p0 = new Point(1, 0);
 final Point p1 = new Point(2, 0);
 final Point p2 = new Point(3, 0);
 final Point p3 = new Point(4, 0);
 final Point p4 = new Point(5, 0);
 final Point p5 = new Point(6, 0);
 final List<Point> points = Arrays.asList(p0, p1, p2, p3, p4, p5);
 for (final Point p : points) {
  graph.addConnection(outgoing, p);
 }
 final List<Point> outgoingConn = new ArrayList<Point>(
  graph.getOutgoingConnections(outgoing));
 for (int i = 0; i < outgoingConn.size(); i++) {
  assertSame(outgoingConn.get(i), points.get(i));
 }
}

相关文章