We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ecb226f + 8df94c9 commit bbd379cCopy full SHA for bbd379c
src/main/java/org/eclipse/biscuit/datalog/expressions/Op.java
@@ -363,7 +363,7 @@ public void evaluate(
363
break;
364
case NotEqual:
365
if (right instanceof Term.Bool && left instanceof Term.Bool) {
366
- stack.push(new Term.Bool(((Term.Bool) left).value() == ((Term.Bool) right).value()));
+ stack.push(new Term.Bool(((Term.Bool) left).value() != ((Term.Bool) right).value()));
367
}
368
if (right instanceof Term.Integer && left instanceof Term.Integer) {
369
stack.push(
0 commit comments