| 57 | }; |
| 58 | |
| 59 | void removeJoinColFromVarColMap(const Variable& var, VariableToColumnMap& map) { |
| 60 | auto colIdx = map.at(var).columnIndex_; |
| 61 | map.erase(var); |
| 62 | for (auto& [_, info] : map) { |
| 63 | auto& [idx, status] = info; |
| 64 | if (idx > colIdx) { |
| 65 | --idx; |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | * @brief Goes through the sets of tests, joins them together with the given |