org.apache.flink.graph.Vertex.getValue()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(5.7k)|赞(0)|评价(0)|浏览(120)

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

Vertex.getValue介绍

暂无

代码示例

代码示例来源:origin: apache/flink

  1. @Override
  2. public Long map(Vertex<K, Tuple2<Long, Double>> vertex) throws Exception {
  3. return vertex.getValue().f0;
  4. }
  5. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void sendMessages(Vertex<K, VV> vertex) throws Exception {
  3. // send current minimum to neighbors
  4. sendMessageToAllNeighbors(vertex.getValue());
  5. }

代码示例来源:origin: apache/flink

  1. public Projection(
  2. Vertex<KC, VVC> connectingVertex,
  3. VV sourceVertexValue, VV targetVertexValue,
  4. EV sourceEdgeValue, EV targetEdgeValue) {
  5. this.f0 = connectingVertex.getId();
  6. this.f1 = connectingVertex.getValue();
  7. this.f2 = sourceVertexValue;
  8. this.f3 = targetVertexValue;
  9. this.f4 = sourceEdgeValue;
  10. this.f5 = targetEdgeValue;
  11. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void updateVertex(Vertex<Long, Double> vertex, MessageIterator<Double> inMessages) {
  3. Double minDistance = Double.MAX_VALUE;
  4. for (double msg : inMessages) {
  5. if (msg < minDistance) {
  6. minDistance = msg;
  7. }
  8. }
  9. if (vertex.getValue() > minDistance) {
  10. setNewVertexValue(minDistance);
  11. }
  12. }
  13. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void join(Tuple4<K, K, VV, EV> tripletWithSrcValSet,
  3. Vertex<K, VV> vertex, Collector<Triplet<K, VV, EV>> collector) throws Exception {
  4. collector.collect(new Triplet<>(tripletWithSrcValSet.f0, tripletWithSrcValSet.f1,
  5. tripletWithSrcValSet.f2, vertex.getValue(), tripletWithSrcValSet.f3));
  6. }
  7. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void join(Tuple2<K, M> newValue, final Vertex<K, VV> currentValue, final Collector<Vertex<K, VV>> out) throws Exception {
  3. this.applyFunction.setOutput(currentValue, out);
  4. this.applyFunction.apply(newValue.f1, currentValue.getValue());
  5. }

代码示例来源:origin: apache/flink

  1. public void join(Tuple3<K, K, Edge<K, EV>> keysWithEdge, Vertex<K, VV> neighbor,
  2. Collector<Tuple2<K, VV>> out) {
  3. out.collect(new Tuple2<>(keysWithEdge.f0, neighbor.getValue()));
  4. }
  5. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void sendMessages(Vertex<K, Double> vertex) {
  3. if (vertex.getValue() < Double.POSITIVE_INFINITY) {
  4. for (Edge<K, Double> edge : getEdges()) {
  5. sendMessageTo(edge.getTarget(), vertex.getValue() + edge.getValue());
  6. }
  7. }
  8. }
  9. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void sendMessages(Vertex<Long, Double> vertex) {
  3. if (vertex.getValue() < Double.POSITIVE_INFINITY) {
  4. for (Edge<Long, Double> edge : getEdges()) {
  5. sendMessageTo(edge.getTarget(), vertex.getValue() + edge.getValue());
  6. }
  7. }
  8. }
  9. }

代码示例来源:origin: apache/flink

  1. public Vertex<K, VV> map(Vertex<K, Tuple3<VV, LongValue, LongValue>> vertex) {
  2. return new Vertex<>(vertex.getId(), vertex.getValue().f0);
  3. }
  4. });

代码示例来源:origin: apache/flink

  1. @Override
  2. public void sendMessages(Vertex<K, Tuple2<Long, Double>> vertex) throws Exception {
  3. for (Edge<K, Double> edge : getEdges()) {
  4. sendMessageTo(edge.getTarget(), new Tuple2<>(vertex.getValue().f0,
  5. vertex.getValue().f1 * edge.getValue()));
  6. }
  7. }
  8. }

代码示例来源:origin: apache/flink

  1. @SuppressWarnings("unchecked")
  2. public void join(Edge<K, EV> edge, Vertex<K, VV> otherVertex,
  3. Collector<Tuple2<K, VV>> out) {
  4. out.collect(new Tuple2<>((K) edge.getField(fieldPosition), otherVertex.getValue()));
  5. }
  6. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public Tuple3<Long, Long, Double> map(Triplet<Long, Point, Double> triplet)
  3. throws Exception {
  4. Vertex<Long, Point> srcVertex = triplet.getSrcVertex();
  5. Vertex<Long, Point> trgVertex = triplet.getTrgVertex();
  6. return new Tuple3<>(srcVertex.getId(), trgVertex.getId(),
  7. srcVertex.getValue().euclideanDistance(trgVertex.getValue()));
  8. }
  9. });

代码示例来源:origin: apache/flink

  1. public void compute(Vertex<Long, Double> vertex, MessageIterator<Double> messages) {
  2. double minDistance = (vertex.getId().equals(srcId)) ? 0d : Double.POSITIVE_INFINITY;
  3. for (Double msg : messages) {
  4. minDistance = Math.min(minDistance, msg);
  5. }
  6. if (minDistance < vertex.getValue()) {
  7. setNewVertexValue(minDistance);
  8. for (Edge<Long, Double> e: getEdges()) {
  9. sendMessageTo(e.getTarget(), minDistance + e.getValue());
  10. }
  11. }
  12. }
  13. }

代码示例来源:origin: apache/flink

  1. public Vertex<K, Tuple2<Long, Double>> map(Vertex<K, Long> vertex) {
  2. return new Vertex<>(vertex.getId(), new Tuple2<>(vertex.getValue(), 1.0));
  3. }
  4. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void join(Vertex<K, VV> vertex, Edge<K, EV> edge, Collector<Tuple4<K, K, VV, EV>> collector)
  3. throws Exception {
  4. collector.collect(new Tuple4<>(edge.getSource(), edge.getTarget(), vertex.getValue(),
  5. edge.getValue()));
  6. }
  7. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void join(Vertex<K, VV> vertex, Tuple3<K, LongValue, LongValue> degrees,
  3. Collector<Vertex<K, Tuple3<VV, LongValue, LongValue>>> out) throws Exception {
  4. out.collect(new Vertex<>(vertex.getId(),
  5. new Tuple3<>(vertex.getValue(), degrees.f1, degrees.f2)));
  6. }
  7. }).withForwardedFieldsFirst("f0");

代码示例来源:origin: apache/flink

  1. public void join(Vertex<K, VV> vertex, Edge<K, EV> edge, Collector<Tuple2<K, Neighbor<VV, EV>>> out) {
  2. out.collect(new Tuple2<>(
  3. edge.getTarget(), new Neighbor<>(vertex.getValue(), edge.getValue())));
  4. }
  5. }

代码示例来源:origin: apache/flink

  1. public void join(Vertex<K, VV> vertex, Edge<K, EV> edge, Collector<Tuple2<K, Neighbor<VV, EV>>> out) {
  2. out.collect(new Tuple2<>(
  3. edge.getSource(), new Neighbor<>(vertex.getValue(), edge.getValue())));
  4. }
  5. }

代码示例来源:origin: apache/flink

  1. @Override
  2. public void sendMessages(Vertex<K, Double> vertex) {
  3. if (getSuperstepNumber() == 1) {
  4. // initialize vertex ranks
  5. vertex.setValue(1.0 / this.getNumberOfVertices());
  6. }
  7. for (Edge<K, Double> edge : getEdges()) {
  8. sendMessageTo(edge.getTarget(), vertex.getValue() * edge.getValue());
  9. }
  10. }
  11. }

相关文章