Class BellmanFordStreamResult

java.lang.Object
org.neo4j.gds.procedures.algorithms.pathfinding.BellmanFordStreamResult

public final class BellmanFordStreamResult extends Object
  • Field Details

    • index

      public long index
    • sourceNode

      public long sourceNode
    • targetNode

      public long targetNode
    • totalCost

      public double totalCost
    • nodeIds

      public List<Long> nodeIds
    • costs

      public List<Double> costs
    • route

      public org.neo4j.graphdb.Path route
    • isNegativeCycle

      public boolean isNegativeCycle
  • Constructor Details

    • BellmanFordStreamResult

      public BellmanFordStreamResult(long index, long sourceNode, long targetNode, double totalCost, List<Long> nodeIds, List<Double> costs, org.neo4j.graphdb.Path route, boolean isNegativeCycle)