| 67 | } |
| 68 | |
| 69 | void PathsOutputWriter::write(FactorizedTable& fTable, table_id_t tableID, LimitCounter* counter) { |
| 70 | auto& sparseGraph = bfsGraph.cast<SparseBFSGraph>(); |
| 71 | for (auto& [offset, _] : sparseGraph.getCurrentData()) { |
| 72 | write(fTable, {offset, tableID}, counter); |
| 73 | } |
| 74 | if (info.lowerBound == 0 && sourceNodeID_.tableID == tableID) { |
| 75 | write(fTable, sourceNodeID_, counter); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | void PathsOutputWriter::write(FactorizedTable& fTable, nodeID_t dstNodeID, LimitCounter* counter) { |
| 80 | if (!inOutputNodeMask(dstNodeID.offset)) { |
no test coverage detected