Skip to content

Commit c0faaf2

Browse files
committed
Define XOR operator and move *valid-operators* to operators
This was been defined actually on parser.lisp. This doesn't make any sense. The XOR operator symbol mathematical is (+), but since this add a ambiguity in Lisp, I would define as [+]. This should works well.
1 parent 0747520 commit c0faaf2

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

src/operators.lisp

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
(in-package :lisp-inference)
66

7+
(eval-when (:compile-toplevel)
8+
(defconstant F nil))
9+
10+
(defparameter *valid-operators* '(~ ^ <=> => v [+]))
11+
712
;; operators
813
(defun ~ (p)
914
"Not unary operator"
@@ -25,6 +30,10 @@
2530
"Biconditional binary operator"
2631
(^ (=> p q) (=> q p)))
2732

33+
(defun [+] (p q)
34+
"XOR operator or exclusive disjunction operator"
35+
(^ (~ (^ p q))
36+
(v p q)))
2837

2938

3039
;; symbolic construction
@@ -42,3 +51,6 @@
4251

4352
(defun make-biconditional (p q)
4453
(list '<=> p q))
54+
55+
(defun make-xor (p q)
56+
(list '[x] p q))

src/package.lisp

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
:v
3535
:=>
3636
:<=>
37+
:[+]
3738
:make-conjunction
3839
:make-negation
3940
:make-disjunction

src/parser.lisp

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
(setf (symbol-function 'operator) #'car)
1818
(setf (symbol-function 'operands) #'cdr)
1919

20-
(defparameter *valid-operators* '(~ ^ <=> => v))
21-
2220
;; operation checkers
2321
(defun operationp (exp op)
2422
"Based a 'op that can be a symbol, verify if the list

0 commit comments

Comments
 (0)