| 18 | class WSPPathsEdgeCompute : public EdgeCompute { |
| 19 | public: |
| 20 | explicit WSPPathsEdgeCompute(BFSGraphManager* bfsGraphManager) |
| 21 | : bfsGraphManager{bfsGraphManager} { |
| 22 | block = bfsGraphManager->getCurrentGraph()->addNewBlock(); |
| 23 | } |
| 24 | |
| 25 | std::vector<nodeID_t> edgeCompute(nodeID_t boundNodeID, graph::NbrScanState::Chunk& chunk, |
| 26 | bool fwdEdge) override { |
nothing calls this directly
no test coverage detected