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
Query
?-call(member, Y, [a,b]).
EXPECTED AND OBSERVED: shows a, waits
query
?- X=member,call(X, Y, [a,b]).
EXPECTED: same behavior
OBSERVED:
X=member,call(X, Y, [a,b]).
Arguments are not sufficiently instantiated
Reachable from:
'$swish wrapper'(A,B)
This is apparently a failure of the static analyzer to realize that X must be member by the time the call occurs.
Thanks to our official QA department, Vladislav Zorov, for this.
The text was updated successfully, but these errors were encountered:
If I recall correctly, it used to do this. However, when introducing disjunctions this easily leads to exponential blowup of the analysis. Static analysis can only do so much. If we want full support of (notably) meta-calling we will need runtime sandboxing. I'm not sure whether and how this can be realised without runtime overhead for not sandboxed execution and without complicating the VM too much.
Thinking about a proper explanation why some code cannot be proved safe might be achievable.
In swish
Query
?-call(member, Y, [a,b]).
EXPECTED AND OBSERVED: shows a, waits
query
?- X=member,call(X, Y, [a,b]).
EXPECTED: same behavior
OBSERVED:
X=member,call(X, Y, [a,b]).
Arguments are not sufficiently instantiated
Reachable from:
'$swish wrapper'(A,B)
This is apparently a failure of the static analyzer to realize that X must be member by the time the call occurs.
Thanks to our official QA department, Vladislav Zorov, for this.
The text was updated successfully, but these errors were encountered: