| 205 | } |
| 206 | |
| 207 | string Input::getSMTName(unsigned child) const { |
| 208 | if (getType().isAggregateType()) |
| 209 | return smt_name + '#' + to_string(child); |
| 210 | assert(child == 0); |
| 211 | return smt_name; |
| 212 | } |
| 213 | |
| 214 | StateValue Input::mkInput(State &s, const Type &ty, unsigned child) const { |
| 215 | if (auto agg = ty.getAsAggregateType()) { |
nothing calls this directly
no test coverage detected