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
Given that my entry point is main, if I query x, I would get a1 and a2. Then if I query y, I would get b1 and b2. Obviously the results I expect are the sets (a1,b1) and (a2,b2), and NOT (a1,b2) or (a2,b1).
How can this be done?
Thanks,
Tom
The text was updated successfully, but these errors were encountered:
that is indeed possible and similar to what has been implemented in this class which allows to trigger multiple queries and share their contexts in between.
I.e. you would trigger the first query for x under the context of foo or bar and then you can also trigger a second query for y under the same context.
For your case the logic referenced abot might need some slight adoption though.
Hello,
Is it possible to create a query that will track two variables?
For example:
Given that my entry point is main, if I query x, I would get a1 and a2. Then if I query y, I would get b1 and b2. Obviously the results I expect are the sets (a1,b1) and (a2,b2), and NOT (a1,b2) or (a2,b1).
How can this be done?
Thanks,
Tom
The text was updated successfully, but these errors were encountered: