| 129 | } |
| 130 | |
| 131 | bool add_variable_to_set(vector<const Variable*>& set, const Variable* v) |
| 132 | { |
| 133 | if (!is_variable_in_set(set, v)) { |
| 134 | set.push_back(v); |
| 135 | return true; |
| 136 | } |
| 137 | return false; |
| 138 | } |
| 139 | |
| 140 | bool add_variables_to_set(vector<const Variable*>& set, const vector<const Variable*>& new_set) |
| 141 | { |
no test coverage detected