You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is currently difficult to use the --enum-range-check option, because it is hard to ensure in a harness that an enum is within range. IF there was a __CPROVER_enum_is_in_range(e) primitive, we could use it like __CPROVER_assume(__CPROVER_enum_is_in_range(e))
and assert(__CPROVER_enum_is_in_range(e))
The text was updated successfully, but these errors were encountered:
It is currently difficult to use the
--enum-range-check
option, because it is hard to ensure in a harness that an enum is within range. IF there was a__CPROVER_enum_is_in_range(e)
primitive, we could use it like__CPROVER_assume(__CPROVER_enum_is_in_range(e))
and
assert(__CPROVER_enum_is_in_range(e))
The text was updated successfully, but these errors were encountered: