探索ツール。9LISP で紹介のため、取りあえずUP。gauche で書いてあります。
tree-search
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
;; PAIP chapter.6 tree-search | |
(use srfi-1) | |
(use gauche.sequence) | |
(use liv.debugs) | |
(debug :search) | |
;; (undebug :search) | |
(define fail '()) | |
(define (tree-search states goal? successors combiner) | |
;; (debug-indent :search 10 ";; Search: ~a" states) | |
(dbg :search ";; Search: ~a" states) | |
(cond ((null? states) fail) | |
((goal? (car states))(car states)) | |
(else (tree-search (combiner (successors (car states)) | |
(cdr states)) | |
goal? successors combiner)))) | |
(define (tree-search states goal? successors combiner) | |
(if (null? states) | |
fail | |
(let1 a (car states) | |
(if (goal? a) | |
a | |
(tree-search (combiner (successors a) | |
(cdr states)) | |
goal? successors combiner))))) | |
(define (tree-search states goal? successors combiner) | |
(if (null? states) | |
fail | |
(let rec ((states states)) | |
(dbg :search ";; Search: ~a" states) | |
(let1 a (car states) | |
(if (goal? a) | |
a | |
(rec (combiner (successors a) | |
(cdr states)))))))) | |
;; successors | |
(define (binary-tree x) | |
(let1 x (* 2 x) | |
(list x (+ 1 x)))) | |
(define (finite-binary-tree n) | |
(lambda (x) | |
(remove (pa$ < n) | |
(binary-tree x)))) | |
;; cost function | |
(define (diff num) | |
(compose abs (cut - <> num))) | |
(define (sorter cost-fn) | |
(lambda (new old) | |
(sort-by (append new old) cost-fn <))) | |
(define (price-is-right price) | |
(lambda (x) | |
(if (> x price) | |
(greatest-fixnum) | |
(- price x)))) | |
;; goal? | |
(define (is value) | |
(pa$ equal? value)) | |
;; combiner | |
(define (prepend x y) | |
(append y x)) |
深さ優先
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
(define (depth-first-search start goal? successors) | |
(tree-search (list start) goal? successors append)) | |
;; (depth-first-search 1 (is 12) binary-tree) | |
;; endless loop ... | |
(depth-first-search 1 (is 12)(finite-binary-tree 15)) | |
;; Search: (1) | |
;; Search: (2 3) | |
;; Search: (4 5 3) | |
;; Search: (8 9 5 3) | |
;; Search: (9 5 3) | |
;; Search: (5 3) | |
;; Search: (10 11 3) | |
;; Search: (11 3) | |
;; Search: (3) | |
;; Search: (6 7) | |
;; Search: (12 13 7)12 |
幅優先
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
(define (breadth-first-search start goal? successors) | |
(tree-search (list start) goal? successors prepend)) | |
(breadth-first-search 1 (is 12) binary-tree) | |
;; Search: (1) | |
;; Search: (2 3) | |
;; Search: (3 4 5) | |
;; Search: (4 5 6 7) | |
;; Search: (5 6 7 8 9) | |
;; Search: (6 7 8 9 10 11) | |
;; Search: (7 8 9 10 11 12 13) | |
;; Search: (8 9 10 11 12 13 14 15) | |
;; Search: (9 10 11 12 13 14 15 16 17) | |
;; Search: (10 11 12 13 14 15 16 17 18 19) | |
;; Search: (11 12 13 14 15 16 17 18 19 20 21) | |
;; Search: (12 13 14 15 16 17 18 19 20 21 22 23)12 |
最良優先探索
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
(define (best-first-search start goal? successors const-fn) | |
(tree-search (list start) goal? successors (sorter const-fn))) | |
(best-first-search 1 (is 12) binary-tree (diff 12)) | |
;; Search: (1) | |
;; Search: (3 2) | |
;; Search: (7 6 2) | |
;; Search: (14 15 6 2) | |
;; Search: (15 6 2 28 29) | |
;; Search: (6 2 28 29 30 31) | |
;; Search: (12 13 2 28 29 30 31)12 | |
(best-first-search 1 (is 12) binary-tree (price-is-right 12)) | |
;; Search: (1) | |
;; Search: (3 2) | |
;; Search: (7 6 2) | |
;; Search: (6 2 14 15) | |
;; Search: (12 2 13 14 15)12 |
ビーム探索
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
(define (beam-search start goal? successors cost-fn beam-width) | |
(tree-search (list start) goal? successors | |
(lambda (old new) | |
(let1 sorted ((sorter cost-fn) old new) | |
(if (> beam-width (length sorted)) | |
sorted | |
(subseq sorted 0 beam-width)))))) | |
(beam-search 1 (is 12) binary-tree (price-is-right 12) 2) | |
;; Search: (1) | |
;; Search: (3 2) | |
;; Search: (7 6) | |
;; Search: (6 14) | |
;; Search: (12 13)12 |
0 件のコメント:
コメントを投稿