| 32 | void addQueryNode(common::idx_t nodePos) { queryNodesSelector[nodePos] = true; } |
| 33 | void addQueryRel(common::idx_t relPos) { queryRelsSelector[relPos] = true; } |
| 34 | void addSubqueryGraph(const SubqueryGraph& other) { |
| 35 | queryRelsSelector |= other.queryRelsSelector; |
| 36 | queryNodesSelector |= other.queryNodesSelector; |
| 37 | } |
| 38 | |
| 39 | common::idx_t getNumQueryRels() const { return queryRelsSelector.count(); } |
| 40 | common::idx_t getTotalNumVariables() const { |
no outgoing calls
no test coverage detected