| 201 | } |
| 202 | |
| 203 | void write(FactorizedTable& fTable, table_id_t tableID, LimitCounter* counter) override { |
| 204 | auto& sparseFrontier = frontier->cast<SparseFrontier>(); |
| 205 | for (auto [offset, _] : sparseFrontier.getCurrentData()) { |
| 206 | write(fTable, {offset, tableID}, counter); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | void write(FactorizedTable& fTable, nodeID_t dstNodeID, LimitCounter* counter) override { |
| 211 | if (!inOutputNodeMask(dstNodeID.offset)) { // Skip dst if it not is in scope. |
nothing calls this directly
no test coverage detected