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
Using constants in negated atoms does not work, when there is more than 1 negated atom per rule.
In the example I use string constants, but it is the same with integers.
Error, when using one constant "a" in 2 negated atoms:
thread 'main' panicked at nemo/src/execution/planning/arithmetic.rs:38:26:
Variable order must contain an entry for every variable.
The error also triggers, when the two negated atoms are referring to different relations (i.e. replace the second negated atom with ~D("a",?a1) and it will still not work).
The text was updated successfully, but these errors were encountered:
Using constants in negated atoms does not work, when there is more than 1 negated atom per rule.
In the example I use string constants, but it is the same with integers.
"a"
in 2 negated atoms:The error message is:
The error also triggers, when the two negated atoms are referring to different relations (i.e. replace the second negated atom with
~D("a",?a1)
and it will still not work).The text was updated successfully, but these errors were encountered: