Created
June 26, 2018 15:16
-
-
Save Fuco1/b6f3114f1bf57866fa9c7e76d82a1951 to your computer and use it in GitHub Desktop.
Trinary logic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defconst trinary--true 1) | |
(defconst trinary--maybe 0) | |
(defconst trinary--false -1) | |
(defun trinary-print (value) | |
(let ((x (trinary-value-value value))) | |
(cond | |
((= x trinary--false) "F") | |
((= x trinary--maybe) "?") | |
((= x trinary--true) "T"))) | |
) | |
(trinary-true) | |
(trinary-maybe) | |
(trinary-false) | |
(defun trinary-true-p (value) | |
(= trinary--true (trinary-value value))) | |
(defun trinary-maybe-p (value) | |
(= trinary--maybe (trinary-value value))) | |
(defun trinary-false-p (value) | |
(= trinary--false (trinary-value value))) | |
(trinary-true-p (trinary-maybe)) | |
(trinary-maybe-p (trinary-maybe)) | |
(trinary-false-p (trinary-maybe)) | |
(trinary-add-maybe (trinary-true)) | |
(defun trinary-add-maybe (value) | |
(cond | |
((trinary-true-p value) | |
(trinary-true)) | |
((trinary-maybe-p value) | |
(trinary-maybe)) | |
((trinary-false-p value) | |
(trinary-maybe)))) | |
(defstruct (trinary | |
(:print-function 'trinary-print) | |
(:constructor nil) | |
(:constructor trinary-true (&aux (value trinary--true))) | |
(:constructor trinary-maybe (&aux (value trinary--maybe))) | |
(:constructor trinary-false (&aux (value trinary--false)))) | |
value) | |
(message (make-trinary-value :value 1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment