finish symexec

This commit is contained in:
2025-06-20 13:57:21 +00:00
parent 8c52269a5e
commit c206e4165f
5 changed files with 618 additions and 13 deletions

View File

@ -15,7 +15,7 @@ int gmp_abs(int x)
int gmp_max(int a, int b)
/*@
Require emp
Ensure __return == Zmax(a, b)
Ensure __return == Z::max(a, b)
*/
{
return a > b ? a : b;