home *** CD-ROM | disk | FTP | other *** search
- ;;;; This file contains sample data for demonstrating matching
- ;;;; programs.
-
- ;;; This section contains neighbor information.
-
- (setf (get 'Start 'neighbors) '(a d))
- (setf (get 'A 'neighbors) '(Start b))
- (setf (get 'B 'neighbors) '(A C Goal))
- (setf (get 'C 'neighbors) '(B Goal))
- (setf (get 'D 'neighbors) '(Start E))
- (setf (get 'E 'neighbors) '(D))
- (setf (get 'Goal 'neighbors) '(B C))
-
- ;;; This section conatins position information.
-
- (setf (get 'Start 'position) '(0 2))
- (setf (get 'A 'position) '(2 0))
- (setf (get 'B 'position) '(5 0))
- (setf (get 'C 'position) '(10 0))
- (setf (get 'D 'position) '(2 4))
- (setf (get 'E 'position) '(7 4))
- (setf (get 'Goal 'position) '(7 2))
-