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
ripl.execute_program('assume x1 = tag("x", "x", normal(0,1))') ripl.execute_program('assume y1 = tag("y", "y", normal(x1,1))') ripl.observe('y1', 2) ripl.execute_program('infer(mh("x", 1, 100))')
The final line crashes noisily since block 1 does not exist in scope "x", leading this dictionary lookup in line 344 to fail:
1
"x"
Venturecxx/backend/lite/trace.py
Lines 341 to 346 in 9304f69
The text was updated successfully, but these errors were encountered:
Remember to handle the built-in scopes/blocks such as "all", "one", etc.
Sorry, something went wrong.
fsaad
No branches or pull requests
The final line crashes noisily since block
1
does not exist in scope"x"
, leading this dictionary lookup in line 344 to fail:Venturecxx/backend/lite/trace.py
Lines 341 to 346 in 9304f69
The text was updated successfully, but these errors were encountered: