MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / runAlgorithmEdgeCompute

Method runAlgorithmEdgeCompute

src/function/gds/gds_utils.cpp:90–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90void GDSUtils::runAlgorithmEdgeCompute(ExecutionContext* context, GDSComputeState& compState,
91 Graph* graph, ExtendDirection extendDirection, uint64_t maxIteration) {
92 auto frontierPair = compState.frontierPair.get();
93 while (frontierPair->continueNextIter(maxIteration)) {
94 frontierPair->beginNewIteration();
95 runOneIteration(context, graph, extendDirection, compState, {});
96 }
97}
98
99void GDSUtils::runFTSEdgeCompute(ExecutionContext* context, GDSComputeState& compState,
100 Graph* graph, ExtendDirection extendDirection,

Callers

nothing calls this directly

Calls 3

runOneIterationFunction · 0.85
beginNewIterationMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected