Skip to content

Commit 8b0f6c4

Browse files
Replace in BF result
1 parent 4fba851 commit 8b0f6c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

procedures/facade-api/path-finding-facade-api/src/main/java/org/neo4j/gds/procedures/algorithms/pathfinding/BellmanFordStatsResult.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
*/
2020
package org.neo4j.gds.procedures.algorithms.pathfinding;
2121

22+
import org.neo4j.gds.procedures.algorithms.results.StatsResult;
23+
2224
import java.util.Map;
2325

2426
public record BellmanFordStatsResult(
@@ -27,5 +29,5 @@ public record BellmanFordStatsResult(
2729
long postProcessingMillis,
2830
Map<String, Object> configuration,
2931
boolean containsNegativeCycle
30-
) {
32+
) implements StatsResult {
3133
}

0 commit comments

Comments
 (0)