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
The problem here is that (a) array.some is calling out to a JS function and (b) the JS function is passed a webppl function as an argument, which isn't supported -- see point 2 here. (Of course, it would be nice if this was an error of some kind.) Instead, you can use the webppl function any. (Docs here.)
The following code returns
true
in the online WebPPL interpreter, but should returnfalse
:The text was updated successfully, but these errors were encountered: