From salvucci at cs.drexel.edu Thu Sep 23 13:25:57 2010 From: salvucci at cs.drexel.edu (Dario Salvucci) Date: Thu, 23 Sep 2010 13:25:57 -0400 Subject: [ACT-R-users] Java ACT-R Message-ID: The Java ACT-R system previewed at the ACT-R workshop is now available as an alpha version: http://cog.cs.drexel.edu/act-r/ The system has three potential uses: * For beginners: Fire up the ACT-R application and start writing a model. The integrated editor (w/ highlighting and indentation) and basic simulation tools make it easy to draft models from scratch or load and run tutorial models. No Java programming is necessary. * For intermediates: The system includes a Java archive file that can be used to develop custom tasks. Using Eclipse (or similar IDE), you can include this file as an external library, then code your task by extending the classes provided (details in the user manual and javadocs, though much more is needed). * For advanced users: The source code is available under an open-source license for anyone wishing to modify the architecture and/or development environment. There are still bugs in the system, and the "assignment" tutorial models are not tested, but I wanted to start getting this out to the community. Of course, any feedback is most welcome and appreciated. Dario _____________________________________ Dario Salvucci, Ph.D. Associate Professor Department of Computer Science Drexel University http://www.cs.drexel.edu/~salvucci/ From y3rr0r at etri.re.kr Tue Sep 28 01:43:46 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Tue, 28 Sep 2010 14:43:46 +0900 Subject: [ACT-R-users] [Act-cv]have you any manual about act-cv? Message-ID: <39D2E8FF4CB544D9B2DCEBF001F91326@etri.info> An HTML attachment was scrubbed... URL: From marc.halbruegge at gmx.de Tue Sep 28 05:52:02 2010 From: marc.halbruegge at gmx.de (Marc =?ISO-8859-1?Q?Halbr=FCgge?=) Date: Tue, 28 Sep 2010 11:52:02 +0200 Subject: [ACT-R-users] [Act-cv]have you any manual about act-cv? In-Reply-To: <39D2E8FF4CB544D9B2DCEBF001F91326@etri.info> References: <39D2E8FF4CB544D9B2DCEBF001F91326@etri.info> Message-ID: <1285667522.1813.15.camel@mahal-i5> Hi Chanhyan, > Anyway, I'd like to use the act-cv with act-r. > so, I have read some documents(overview, setting, etc without detail > description) about the act-cv from web and tested it with > act-cv-demo. > But I can't understand the file 'act-cv-dev.lisp'. > I'd like to know a description for functions defined in the > act-cv-dev.lisp. > If you have any document about that, would you plz let me get it? There is no documentation but the online docs here: http://act-cv.sourceforge.net/docs/ act-cv-dev.lisp is not covered there, so I'll try to give a short description: This file provides the glue between the OpenCV/C++ world on the one hand and the ACT-R/Lisp world on the other hand. The first half of act-cv-dev.lisp contains code for loading the library libAct-CV.so/.dll and calling function from it. The second half of the file - beginning with "(defclass act-cv-device" provides a class that serves as a device in ACT-R terms. The methods of this class are called when a model runs, e.g. - "build-vis-locs-for" when ACT-R processes the display ("proc-display") - "device-update-attended-loc" during +visual> isa move-attention screen-pos =visual-location ...and so on Mail me off list if you have more questions Best, Marc > > > -changhyun > > _______________________________________________ > ACT-R-users mailing list > ACT-R-users at act-r.psy.cmu.edu > http://act-r.psy.cmu.edu/mailman/listinfo/act-r-users From y3rr0r at etri.re.kr Wed Sep 29 01:46:10 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Wed, 29 Sep 2010 14:46:10 +0900 Subject: [ACT-R-users] Using act-cv.... Message-ID: <7B5E6A0D42D94A4594CF82DEACB66203@etri.info> An HTML attachment was scrubbed... URL: From marc.halbruegge at gmx.de Wed Sep 29 04:37:11 2010 From: marc.halbruegge at gmx.de (Marc =?ISO-8859-1?Q?Halbr=FCgge?=) Date: Wed, 29 Sep 2010 10:37:11 +0200 Subject: [ACT-R-users] Using act-cv.... In-Reply-To: <7B5E6A0D42D94A4594CF82DEACB66203@etri.info> References: <7B5E6A0D42D94A4594CF82DEACB66203@etri.info> Message-ID: <1285749431.1929.12.camel@mahal-i5> > I'm trying to use act-cv with act-r. > Also, I checked the act-cv-demo.lisp which is delivered --> no > problem! > and I wanted to use a part of the act-cv-demo.lisp. Thus the following > part was copied and pasted into a new lisp file. > > ; load CFFI > (pushnew (pathname (concatenate 'string (directory-namestring > *load-truename*) "cffi/")) asdf:*central-registry*) > (asdf:operate 'asdf:load-op 'cffi) > ; load ACT-CV > (load (concatenate 'string (directory-namestring *load-truename*) > "act-cv-device/act-cv-dev.lisp")) > (load (concatenate 'string (directory-namestring *load-truename*) > "act-cv-device/act-cv-test.lisp")) > > and compile !!! > --> an error is occurred! " component "cffi" not found " ACT-CV depends on cffi. It's not an ACT-R issue from the docs (http://act-cv.sourceforge.net/docs/) > ACT-CV depends on the CFFI package, which is available for all major > Lisps. This way, ACT-CV is not bound to a single flavor of Lisp. After > having loaded CFFI, you can load the file "act-cv-dev.lisp" from the > actr-device directory of the distribution. There is a sample ACT-R > model in "act-cv-test.lisp" in the same directory that demonstrates > how ACT-CV works. The ACT-CV windows installer already contains cffi. If you want to use that with your personal Lisp of choice, you have to include the path to cffi in your ASDF registry. This may help: http://common-lisp.net/~mmommer/asdf-howto.shtml If you're working from the sources, get CFFI here: http://common-lisp.net/project/cffi/ Best, Marc > > consequently, > > The above code in act-cv-demo.lisp --> no problem > The above code in differentfile.lisp --> Error ! > > Why this problem is occurred ???? > > Thanks previously > -changhyun > > > _______________________________________________ > ACT-R-users mailing list > ACT-R-users at act-r.psy.cmu.edu > http://act-r.psy.cmu.edu/mailman/listinfo/act-r-users From y3rr0r at etri.re.kr Wed Sep 29 05:04:49 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Wed, 29 Sep 2010 18:04:49 +0900 Subject: [ACT-R-users] Using act-cv.... Message-ID: <5029DE41706542B5947D961E904400BF@etri.info> An HTML attachment was scrubbed... URL: From y3rr0r at etri.re.kr Wed Sep 29 20:32:26 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Thu, 30 Sep 2010 09:32:26 +0900 Subject: [ACT-R-users] Using act-cv.... Message-ID: <8411CEA8EE3C4CCE99ECC1D8079DDD32@etri.info> An HTML attachment was scrubbed... URL: From y3rr0r at etri.re.kr Thu Sep 30 02:23:07 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Thu, 30 Sep 2010 15:23:07 +0900 Subject: [ACT-R-users] [help!!!]Modifying act-cv... Message-ID: <51A566D80CFF4B9D82A9D013F38FA365@etri.info> An HTML attachment was scrubbed... URL: From y3rr0r at etri.re.kr Thu Sep 30 04:08:13 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Thu, 30 Sep 2010 17:08:13 +0900 Subject: [ACT-R-users] about previous problem..... Message-ID: An HTML attachment was scrubbed... URL: From y3rr0r at etri.re.kr Thu Sep 30 04:43:12 2010 From: y3rr0r at etri.re.kr (=?ks_c_5601-1987?B?udrDosf2?=) Date: Thu, 30 Sep 2010 17:43:12 +0900 Subject: [ACT-R-users] about previous problem..... Message-ID: An HTML attachment was scrubbed... URL: