[ACT-R-users] ACT-R Environment

David Reitter dreitter at inf.ed.ac.uk
Sun Dec 16 18:26:48 EST 2007


On 16 Dec 2007, at 08:49, sima najafi wrote:

> Now I want to load and run Count,lisp sample so execute the Start  
> Environment.exe but it display “waiting for ACT-R”  messages and  
> remain in this state.

You need to run (start-environment) first. It's described here:

http://act-r.psy.cmu.edu/actr6/QuickStart.txt

I'm attaching what I have at the top of a model .lisp file, ready to  
execute from within Aquamacs or Emacs and SLIME. That way don't have  
to do all the steps by hand. (Btw, Start Environment is more difficult  
to quickly start via keyboard because it's not called "ACT-R  
Environment.app", like other applications.)
You'll have to tweak the code to do things right in your environment  
(i.e. on Windows) of course.

Hope that helps!

--
David Reitter
ICCS/HCRC, Informatics, University of Edinburgh
http://www.david-reitter.com



(defun startup ()

  ;; (slime)  ;; this is Elisp code!
  ;; (shell-command "open ~/Applications/actr6/environment/Start\  
Environment\ OSX.app")
   ;; this is Lisp code:

   (progn
     (load "/Users/dr/Applications/actr6/load-act-r-6.lisp")

     (start-environment)
     (load "/Users/dr/Work/ACT-R/production.lisp")
     )

   (do-experiment)
)









More information about the ACT-R-users mailing list