2014年10月11日土曜日

開発環境

計算機プログラムの構造と解釈[第2版](ハロルド エイブルソン (著)、ジュリー サスマン (著)、ジェラルド・ジェイ サスマン (著)、Harold Abelson (原著)、Julie Sussman (原著)、Gerald Jay Sussman (原著)、和田 英一 (翻訳)、翔泳社、原書: Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science)(SICP))の4(超言語的抽象)、4.3(Schemeの変形 - 非決定性計算)、4.3.3(非決定性プログラムの例)、論理パズル、問題 4.39.を解いてみる。

その他参考書籍

問題 4.39.

制限の順序は解に影響しない。順序を入れ替えても、最終結果がいずれの制限も満たすことには変わりないから。

解を見出す時間には影響する。distinct?手続きは時間がかかる手続きだから、最後に移動すれば、distinct?手続きが実行される回数が縁、プログラムは速くなる。

コード(BBEdit, Emacs)

sample39.scm

#!/usr/bin/env gosh
;; -*- coding: utf-8 -*-

(define (multiple-dwelling)
  (let ((baker (amb 1 2 3 4 5))
        (cooper (amb 1 2 3 4 5))
        (fletcher (amb 1 2 3 4 5))
        (miller (amb 1 2 3 4 5))
        (smith (amb 1 2 3 4 5)))
    (require
     (distinct? (list baker cooper fletcher miller smith)))
    (require (not (= baker 5)))
    (require (not (= cooper 1)))
    (require (not (= fletcher 5)))
    (require (not (= fletcher 1)))
    (require (> miller cooper))
    (require (not (= (abs (- smith fletcher)) 1)))
    (require (not (= (abs (- fletcher cooper)) 1)))
    (list (list 'baker baker)
          (list 'copper cooper)
          (list 'fletcher fletcher)
          (list 'miller miller)
          (list 'smith smith))))

0 コメント:

コメントを投稿