| 487 | } |
| 488 | |
| 489 | void State::check_enough_tmp_slots() { |
| 490 | if (i_tmp_values >= tmp_values.size()) |
| 491 | throw AliveException("Too many temporaries", false); |
| 492 | } |
| 493 | |
| 494 | const StateValue& State::eval(const Value &val, bool quantify_nondet) { |
| 495 | auto &[sval, _retdom, _ub, uvars] = values.at(&val); |
nothing calls this directly
no test coverage detected