| 88 | } |
| 89 | |
| 90 | void 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 | |
| 99 | void GDSUtils::runFTSEdgeCompute(ExecutionContext* context, GDSComputeState& compState, |
| 100 | Graph* graph, ExtendDirection extendDirection, |
nothing calls this directly
no test coverage detected