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
{{ message }}
This repository has been archived by the owner on Mar 18, 2019. It is now read-only.
Right now, multiple fresh variables are not implicitly distinct. For example, with the events [{:ip "10.0.0.1"}], the query '(= (:ip x) (:ip y) "10.0.0.1") will (correctly!) result in: [[{:ip "10.0.0.1"} {:ip "10.0.0.1"}]]. While this is correct from a logic program perspective, this is probably not what the SOC wants. We can solve this by applying distincto to all of the logic variables.
The text was updated successfully, but these errors were encountered:
Right now, multiple fresh variables are not implicitly distinct. For example, with the events
[{:ip "10.0.0.1"}]
, the query'(= (:ip x) (:ip y) "10.0.0.1")
will (correctly!) result in:[[{:ip "10.0.0.1"} {:ip "10.0.0.1"}]]
. While this is correct from a logic program perspective, this is probably not what the SOC wants. We can solve this by applyingdistincto
to all of the logic variables.The text was updated successfully, but these errors were encountered: