2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ISLispでPrologインタプリタを作った話

Last updated at Posted at 2022-10-10

発端

グレアムさんの「On Lisp」にProlog処理系のことが書かれているというので初版が出て、すぐに書店で購入したように思います。10年くらい前になりますでしょうか。しかし、この本に掲載されていたPrologは私の知っている、思っているPrologとはどうも違うのです。説明もオンメモリデータベース操作処理系みたいな雰囲気でした。結局、この本は知り合いにプレゼントしたので今では手元にありません。Prolog本来のSLDリゾルーション、ホーン節の証明という立場に立って、私なりに書いてみることとしました。中島秀之先生のPrologの本にあった処理系と、ノーヴィッグ先生のPAIPにあった例を思い出しつつ、自分ならこうするということで書いたものが次のコードです。

実行例

今のところPAIPの例題と階乗計算くらいは実行できることを確認しています。

Easy-ISLisp Ver2.64
> (load "tests/prolog.lsp")
T
> (prolog)
-? (consult "tests/test.pl")
YES
-? (listing)
(LIKES KIM ROBIN)
(LIKES SANDY LEE)
(LIKES SANDY KIM)
(LIKES ROBIN CATS)
((LIKES SANDY _X) (LIKES _X CATS))
((LIKES KIM _X) (LIKES _X LEE) (LIKES _X KIM))
(LIKES _X _X)
(FACT 0 1)
((FACT _N _M) (IS _N1 (- _N 1)) (FACT _N1 _M1) (IS _M (* _N _M1)))
YES
-? (likes sandy _x)
_X = LEE;
_X = KIM;
_X = ROBIN;
_X = SANDY;
_X = CATS;
_X = SANDY;
NO
-? (fact 10 _x)
_X = 3628800
YES
-? (halt)
YES
GOODBYE
> 

全ソースコード

#|
Prolog interpreter

data type
variable _name e.g. _x _y _z
anoymous _
variant (% sym n) e.g. (% _x 1)
variant variable (% sym num) to avoid lack of memory
predicate e.g. (human taro)
clause e.g.  ((error _x) (human _x))   head part is car and body part is cdr 

data base   symbol (set-property '((foo a)) 'prolog 'foo)  predicate
                   (set-property '(((foo _x)(bar _x))) 'prolog 'foo)  clause


builtin predicate (set-property (lambda (x env) ...) 'builtin 'bar)

environment ((var0 . val0)(var1 . val1) ... (varn , valn))

unify(x,y,env) -> if success return env, else return 'no

question  add goal (ask) builtin to display variable


builtin predicate
(assert x) (halt) (listing) (listing x) (is x y) (consult x) (reconsult x) (ask)
(fail) (true) (= x y) (== x y) (\= x y) (> x y) (>= x y) (< x y) (<= x y)

|#

(import "test")

(defglobal epilog nil)  ;halt switch
(defglobal user nil)    ;user defined predicate and clause name
(defglobal variable nil) ;variable included in goal

(defun prolog ()
    (setup)
    (for ()
         (epilog (setq epilog nil) 'goodbye)
         (format (standard-output) "-? ")
         (let ((goal (read)))
            (setq variable (findvar goal))
            (let ((res (catch 'exit 
                              (with-handler 
                                  (lambda (c) (throw 'exit c))
                                  (prove-all (addask goal) nil 0)))))
               (cond ((instancep res (class <error>))
                      (format (standard-output) "System error ~A~%" (class-of res)))
                     ((not (eq res 'error))
                      (display res)))))))


(defun display (x)
    (if (eq x 'no)
        (format (standard-output) "~A~%" 'no)
        (format (standard-output) "~A~%" 'yes)))

;; x: goal
;; y: continuation
;; env: environment assoc list
;; n: nest level integer 1 ...
;; if success goal return env else return 'no
(defun prove (x y env n)
    ;(format (standard-output) "try ~A~%" x)
    (block prove
        (cond ((userp x) 
               (let ((def (property (car x) 'prolog)))
                  (while def
                      (cond ((predicatep (car def))  
                             (let* ((def1 (alfa-convert (car def) n))
                                    (env1 (unify x def1 env)))
                                (if (successp env1)
                                    (let ((env2 (prove-all y env1 n)))
                                      (if (successp env2)
                                          (return-from prove env2))))))
                            ((clausep (car def))
                             (let* ((def1 (alfa-convert (car def) n))
                                    (env1 (unify x (car def1) env)))
                                (if (successp env1)
                                    (let ((env2 (prove-all (append (cdr def1) y) env1 (+ n 1))))
                                        (if (successp env2) 
                                            (return-from prove env2)))))))
                      (setq def (cdr def)))
                  (return-from prove 'no)))      
              ((builtinp x)
               (let ((env1 (call-builtin x env)))
                   (if (successp env1)
                       (let ((env2 (prove-all y env1 n)))
                          (if (successp env2)
                              (return-from prove env2)
                              (return-from prove 'no)))
                       (return-from prove 'no))))
              ((null x) 'yes) ; for consult/reconsult. file end is nil
              (t (error* "Existence error" x)))))
                                 

;; SLD resolution
;; x: continuation P1,P2,...Pn.
;; at fist resolve P1 with prove, and second P2 ... Pn
;; if success return env else return 'no
(defun prove-all (x env n) 
    (if (null x)
        env
        (prove (car x) (cdr x) env n))) 
    
(defun successp (x)
    (not (eq x 'no)))

;; if unify success return env else return 'no
(defun unify (x y env)
    (cond ((and (null x) (null y)) env)
          ((or (anoymousp x) (anoymousp y)) env)
          ((and (variablep x) (not (variablep y)))
           (let ((x1 (deref x env)))
             (if (variablep x1)
                 (cons (cons x1 y) env)
                 (unify x1 y env))))
          ((and (not (variablep x)) (variablep y))
           (let ((y1 (deref y env)))
             (if (variablep y1)
                 (cons (cons y1 x) env)
                 (unify x y1 env))))
          ((and (variablep x) (variablep y))
           (let ((x1 (deref x env))
                 (y1 (deref y env)))
              (if (and (variablep x1) (variablep y1))
                  (cons (cons x1 y1) env)
                  (unify (deref x env) (deref y env) env))))
          ((and (atom x) (atom y) (eq x y)) env)
          ((and (listp x) (listp y)) 
           (let ((env1 (unify (car x) (car y) env)))
               (if (successp env1)
                   (unify (cdr x) (cdr y) env1)
                   'no)))
          ((and (null x) (not (null y))) 'no)
          ((and (not (null x))) (null y) 'no)))
          

(defun call-builtin (x env)
    (funcall (property (car x) 'builtin) (cdr (deref x env)) env))

(defun setup ()
    (set-property (lambda (x env) (assert x env)) 'assert 'builtin)
    (set-property (lambda (x env) (halt x env)) 'halt 'builtin)
    (set-property (lambda (x env) (listing x env)) 'listing 'builtin)
    (set-property (lambda (x env) (ask variable env)) 'ask 'builtin)
    (set-property (lambda (x env) (is x env)) 'is 'builtin)
    (set-property (lambda (x env) (consult x env)) 'consult 'builtin)
    (set-property (lambda (x env) (reconsult x env)) 'reconsult 'builtin)
    (set-property (lambda (x env) 'no) 'fail 'builtin)
    (set-property (lambda (x env) env) 'true 'builtin)
    (set-property (lambda (x env) (unify (elt x 0) (elt x 1) env)) '= 'builtin)
    (set-property (lambda (x env) (if (= (elt x 0) (elt x 1)) env 'no)) '== 'builtin)
    (set-property (lambda (x env) (if (not (= (elt x 0) (elt x 1))) env 'no)) '\= 'builtin)
    (set-property (lambda (x env) (if (> (elt x 0) (elt x 1)) env 'no)) '> 'builtin)
    (set-property (lambda (x env) (if (>= (elt x 0) (elt x 1)) env 'no)) '>= 'builtin)
    (set-property (lambda (x env) (if (< (elt x 0) (elt x 1)) env 'no)) '< 'builtin)
    (set-property (lambda (x env) (if (<= (elt x 0) (elt x 1)) env 'no)) '<= 'builtin)
    t)

(defun assert (x env)
    (let ((arg1 (elt x 0)))
      (cond ((predicatep arg1)
             (if (not (member (car arg1) user)) (setq user (cons (car arg1) user)))
             (set-property (addtail (property (car arg1) 'prolog) arg1) (car arg1) 'prolog)) 
            ((clausep arg1)
             (if (not (member (car (car arg1)) user)) (setq user (cons (car (car arg1)) user)))
             (set-property (addtail (property (car (car arg1)) 'prolog) arg1) (car (car arg1)) 'prolog ))))
    env)

(defun halt (x env)
    (read-char) ;discard input
    (mapc (lambda (y) (set-property nil y 'prolog)) user) ;delete prolog code
    (setq epilog t)) 


(defun listing (x env)
    (cond ((null x) (mapc (lambda (y) (listing1 y)) (reverse user)))
          (t (mapc (lambda (y) (listing1 y)) x)))
    env)

(defun listing1 (x)
    (for ((dt (property x 'prolog) (cdr dt)))
         ((null dt) t)
         (format (standard-output) "~A~%" (car dt))))

(defun findvar (x)
    (cond ((not (consp x)) nil)
          ((eq (car x) 'assert) nil)
          (t (remove-double (findvar1 x)))))

(defun findvar1 (x)
    (cond ((null x) nil)
          ((variablep (car x)) (cons (car x) (findvar1 (cdr x))))
          ((atom (car x)) (findvar1 (cdr x)))
          ((listp (car x)) (append (findvar1 (car x)) (findvar1 (cdr x))))))

(defun remove-double (x)
    (cond ((null x) nil)
          ((member (car x) (cdr x)) (remove-double (cdr x)))
          (t (cons (car x) (remove-double (cdr x))))))

(defun ask (x env)
    (block ask
        (if (null x) (return-from ask env))
        (for ((dt x (cdr dt)))
             ((null (cdr dt)) 
              (format (standard-output) "~A = ~A" (car dt) (deref (car dt) env)))
             (format (standard-output) "~A = ~A~%" (car dt) (deref (car dt) env)))
        (read-char) ; discard input
        (let ((key (read-char)))
           (while (and (not (char= key #\.)) (not (char= key #\;)) (not (char= key #\newline)))
               (setq key (read-char)))
           (cond ((char= key #\.) 'yes)
                 ((char= key #\newline) 'yes)
                 ((char= key #\;) 'no)))))

      
(defun is (x env)
    (let ((arg1 (elt x 0))
          (arg2 (elt x 1)))
        (unify arg1 (eval arg2) env)))      

(defun consult (x env)
    (let* ((arg1 (elt x 0))
           (instream (open-input-file arg1))
           (sexp t))
           (while (not (null sexp))
              (setq sexp (read instream nil nil))
              (prove sexp nil nil 0))
           (close instream))
    env)

(defun reconsult (x env)
    (mapc (lambda (y) (set-property nil y 'prolog)) user)
    (let* ((arg1 (elt x 0))
           (instream (open-input-file arg1))
           (sexp t))
           (while (not (null sexp))
              (setq sexp (read instream nil nil))
              (prove sexp nil nil 0))
           (close instream))
    env)

(defun error* (msg x)
    (format (standard-output) "~A ~A~%" msg x)
    (throw 'exit 'error))

(defun predicatep (x)
    (and (consp x) (symbolp (car x))))

(defun clausep (x)
    (and (consp x) (listp (car x))))

(defun userp (x)
    (and (consp x)
         (not (null (property (car x) 'prolog)))))

(defun builtinp (x)
    (and (consp x)
         (functionp (property (car x) 'builtin))))

(defun variablep (x)
    (or (and (symbolp x) (char= (elt (convert x <string>) 0) #\_))
        (variantp x)))

(defun anoymousp (x)
    (eq x '_))

(defun variantp (x)
    (and (listp x) (eq (car x) '%)))

(defun deref (x env)
    (cond ((null x) nil)
          ((anoymousp x) x)
          ((variablep x) (deref1 x env))
          ((atom x) x)
          ((listp x) (cons (deref (car x) env)
                           (deref (cdr x) env)))))
                
; e.g.  env=((_a . 1)(_b . _a))   (deref1 '_b env)->1             
(defun deref1 (x env)
    (let ((x1 (assoc-equal x env)))
        (cond ((null x1) x)
              ((variablep (cdr x1)) (deref1 (cdr x1) env))
              (t (cdr x1)))))

(defun assoc-equal (x env)
    (cond ((null env) nil)
          ((equal x (car (car env))) (car env))
          (t (assoc-equal x (cdr env)))))

(defun alfa-convert (x n)
    (cond ((null x) nil)
          ((anoymousp x) x)
          ((variablep x) (list '% x n))
          ((atom x) x)
          ((listp x) (cons (alfa-convert (car x) n)
                           (alfa-convert (cdr x) n)))))

(defun addask (x)
    (cond ((predicatep x) (list x '(ask)))
          ((null (cdr x)) (list (car x) '(ask)))
          (t (cons (car x) (addask (cdr x))))))


(defun addtail (x y)
    (cond ((null x) (list y))
          ((null (cdr x)) (list (car x) y))
          (t (cons (car x) (addtail (cdr x) y)))))


($test (anoymousp '_) t)
($test (variablep '_) t)
($test (variablep '_x) t)
($test (variantp '(% _x 1)) t)
($test (variablep '(% _x 1)) t)
($test (predicatep '(foo 1)) t)
($test (clausep '((foo _x)(bar _x))) t)
($test (unify 1 1 nil) nil)
($test (unify 1 2 nil) no)
($test (unify '_ 'a nil) nil)
($test (unify '(foo 1) '(foo 1) nil) nil)
($test (unify '(foo _x) '(foo 1) nil) ((_x . 1)))
($test (unify '(foo 1) '(foo _y) nil) ((_y . 1)))
($test (unify '(foo _z) '(foo _y) nil) ((_z . _y)))
($test (unify '(foo (% _x 0)) '(foo 1) '(((% _x 0) . 1))) (((% _x 0) . 1)))
($test (unify '(foo (% _x 0) (% _x 0)) '(foo 1 1) nil) (((% _x 0) . 1)))
($test (unify '(foo 1 1) '(foo (% _x 0) (% _x 0)) nil) (((% _x 0) . 1)))
($test (deref '_x '((_x . 3))) 3)
($test (deref '(foo _x) '((_x . 3))) (foo 3))
($test (deref '(foo _x) '((_a . 2)(_x . _a))) (foo 2))
($test (alfa-convert '((foo _x)(bar _x)) 2) ((foo (% _x 2))(bar (% _x 2))))
($test (findvar '(foo _x _y)) (_x _y))
($test (addask '(foo _x)) ((foo _x)(ask)))
($test (addask '((foo _x)(bar _x))) ((foo _x)(bar _x)(ask)))
($test (addtail '((foo 1)) '(bar 2)) ((foo 1)(bar 2)))
($test (addtail '((foo 1)((uoo 3)(print 3))) '(bar 2)) ((foo 1)((uoo 3)(print 3))(bar 2)))
($test (addtail nil '(foo 1)) ((foo 1)))

落ち着きを取り戻した感

グレアムさんの本が出た頃はLispもちょっとしたブームになっていました。マクロを徹底的に使いこなすようなLispが時代の流れであったように覚えています。普通のやつらの上をいけ、なんてとんがった言葉も流行りましたね。でも、結局、100年の言語、Arcも流行りませんでした。現在ではLisp世界も落ち着いたようです。普通なやつの私の原点は中島先生のProlog本でした。じっくり落ち着いて再考しようと思っています。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?