;;; ;;; ACT-R/A/C Serial Subtraction Loader ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; Author: Isaac Councill ;;; Created: 11/14/01 ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; (setf *gc-verbose* nil) (setf *byte-consed-between-gcs* 16777216) ;; 16Mb ;;; Setup directories (setf *model-dir* "*Your-Model-Directory*") ;; SET THIS ;;; Load CLX, if necessary #+:UNIX (load "*Your-CLX-Path*") ;; SET THIS, if necessary ;;; Load Garnet (load "*Your-Garnet-Path*") ;; SET THIS ; Depending on your Garnet build, you may or may not ; need to load these additional components: (dolist (file '("motif-radio-buttons-loader" "motif-check-buttons-loader" "motif-text-buttons-loader" "motif-menubar-loader" "h-slider-loader")) (user::garnet-load (concatenate 'string "gadgets:" file)))) ;;; Load ACT-R 4.0 (load "*Your-ACT-R_4.0-Path") ;; SET THIS ;;; Load ACT-R/A/C model (load (merge-pathnames *model-dir* "sub-functions")) (load (merge-pathnames *model-dir* "sub-gui")) (load (merge-pathnames *model-dir* "overlay")) (load (merge-pathnames *model-dir* "sub-model"))