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