Skip to content

Commit

Permalink
fixed swapped negation symbols for verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioRomano committed Mar 15, 2024
1 parent 212e2a9 commit 5bacfc6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package at.jku.cps.travart.core.verify;

public enum LogicOperator {
AND("&", "&"), OR("|", "|"), EQUALS("<=>", "<=>"), IMPLIES("=>", "=>"), NOT("~", "!");
AND("&", "&"), OR("|", "|"), EQUALS("<=>", "<=>"), IMPLIES("=>", "=>"), NOT("!", "~");

private String uvl;
private String ng;
Expand Down

0 comments on commit 5bacfc6

Please sign in to comment.