| 192 | : Value(type, std::string(name)), smt_name(std::move(name)) {} |
| 193 | |
| 194 | void Input::setAttributes(ParamAttrs &&new_attrs) { |
| 195 | attrs = std::move(new_attrs); |
| 196 | setName(attr_str(attrs) + getName()); |
| 197 | } |
| 198 | |
| 199 | void Input::copySMTName(const Input &other) { |
| 200 | smt_name = other.smt_name; |