We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Program:
component pss_top { struct my_struct { int a = 1; rand int b; rand int c; constraint { b == 2; } } action root_a { my_struct s1; int x, y, z; constraint { s1.c == 3; } exec post_solve { x = s1.a; y = s1.b; z = s1.c; } exec body ASM = """x = {{x}} y = {{y}} z = {{z}}"""; } }
Error Message:
PSSRandom.limitRetry(), Ln47: randomize fail
Golden Result:
x = 1 y = 2 z = 3
The text was updated successfully, but these errors were encountered:
LeeKaiXuan
No branches or pull requests
Test Program:
Error Message:
Golden Result:
The text was updated successfully, but these errors were encountered: