| 284 | } |
| 285 | |
| 286 | expr Input::getUndefVar(const Type &ty, unsigned child) const { |
| 287 | string tyname = "isundef_" + getSMTName(child); |
| 288 | //return expr::mkVar(tyname.c_str(), ty.getDummyValue(false).value); |
| 289 | // FIXME: only whole value undef or non-undef for now |
| 290 | return expr::mkVar(tyname.c_str(), expr::mkUInt(0, 1)); |
| 291 | } |
| 292 | |
| 293 | } |
no test coverage detected