| 16 | class SSPPathsEdgeCompute : public SPEdgeCompute { |
| 17 | public: |
| 18 | SSPPathsEdgeCompute(SPFrontierPair* frontierPair, BFSGraphManager* bfsGraphManager) |
| 19 | : SPEdgeCompute{frontierPair}, bfsGraphManager{bfsGraphManager} { |
| 20 | block = bfsGraphManager->getCurrentGraph()->addNewBlock(); |
| 21 | } |
| 22 | |
| 23 | std::vector<nodeID_t> edgeCompute(nodeID_t boundNodeID, graph::NbrScanState::Chunk& resultChunk, |
| 24 | bool isFwd) override { |
nothing calls this directly
no test coverage detected