------------------------------------------------------------------------ r803 | db30 | 2009-11-18 08:05:37 -0500 (Wed, 18 Nov 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed a '(lambda ...) in synthesize-phrase because LispWorks doesn't like that. ------------------------------------------------------------------------ r802 | db30 | 2009-11-16 09:07:16 -0500 (Mon, 16 Nov 2009) | 1 line Changed paths: M /actr6/framework/chunk-types.lisp Fixed an issue with creating a chunk-type subtype that specifies a slot which already exists in the parent type because that could cause production matching problems in some cases with matching a subtype to the parent type. ------------------------------------------------------------------------ r801 | db30 | 2009-10-27 11:21:19 -0400 (Tue, 27 Oct 2009) | 1 line Changed paths: M /actr6/framework/top-level.lisp Fixed clear-all so that it removes any changes made with mp-real-time-management. ------------------------------------------------------------------------ r800 | db30 | 2009-10-27 11:19:47 -0400 (Tue, 27 Oct 2009) | 1 line Changed paths: M /actr6/framework/model.lisp Fixed define-model so that multi-buffers get initialized properly. ------------------------------------------------------------------------ r799 | db30 | 2009-09-29 09:52:40 -0400 (Tue, 29 Sep 2009) | 1 line Changed paths: M /actr6/framework/buffers.lisp Added an erase-buffer command which is like clear, but doesn't notify other modules. Mainly for use by a module with a multi-buffer. ------------------------------------------------------------------------ r798 | db30 | 2009-09-18 11:36:00 -0400 (Fri, 18 Sep 2009) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Don't require the production-parsing file in procedural for now to avoid a potential bug. ------------------------------------------------------------------------ r797 | db30 | 2009-09-18 10:17:27 -0400 (Fri, 18 Sep 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/support/production-parsing-support.lisp Combined the p and p* code so that there's only one set of functions for parsing and building them internally (doesn't affect how they are used). ------------------------------------------------------------------------ r796 | db30 | 2009-09-18 10:15:23 -0400 (Fri, 18 Sep 2009) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Fixed a bug introduced with the last procedural update that happened if :use-tree was turned on. ------------------------------------------------------------------------ r795 | db30 | 2009-09-15 09:58:15 -0400 (Tue, 15 Sep 2009) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Cleaning up the conflict-resolution code before adding the next step of the multi-buffer addition to it. ------------------------------------------------------------------------ r794 | db30 | 2009-09-15 09:34:16 -0400 (Tue, 15 Sep 2009) | 1 line Changed paths: M /actr6/framework/modules.lisp Some tweaks to the internals of the multi-buffer code. ------------------------------------------------------------------------ r793 | db30 | 2009-09-14 15:15:34 -0400 (Mon, 14 Sep 2009) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Fixed a bug in compilation with respect to the new ppm flag. ------------------------------------------------------------------------ r792 | db30 | 2009-09-11 09:46:17 -0400 (Fri, 11 Sep 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp Continuation of the previous update -- just reorganizing. ------------------------------------------------------------------------ r791 | db30 | 2009-09-11 09:44:52 -0400 (Fri, 11 Sep 2009) | 1 line Changed paths: A /actr6/support/production-parsing-support.lisp Reorganizing some of the procedural system's code (no change to functionality). ------------------------------------------------------------------------ r790 | db30 | 2009-09-10 14:39:12 -0400 (Thu, 10 Sep 2009) | 1 line Changed paths: M /actr6/framework/random.lisp M /actr6/tools/act-gui-interface.lisp Moved permute-list to the random module's file. ------------------------------------------------------------------------ r789 | db30 | 2009-09-10 11:59:57 -0400 (Thu, 10 Sep 2009) | 201 lines Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/framework/buffers.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/model.lisp M /actr6/framework/modules.lisp Another experimental change for the system. It is now possible to create a buffer for a module which can skip copying a chunk when placing it into that buffer if the chunk has been explicitly indicated as one not to be copied. Buffers of this type are going to be referred to as multi-buffers because they essentially have a set of multiple chunks which can be put into the buffer. A multi-buffer works just like a normal buffer in all other respects -- most importantly that there is still only ever one chunk "in" the buffer at any time. To create a multi-buffer the module needs to provide a non-nil 6th item in the buffer definition list for the buffer in the define-module call. There are three new commands that can then be used in conjunction with a multi-buffer. The command store-m-buffer-chunk can be used to add a chunk to the set of chunks which will not be copied for a multi-buffer. Any chunk which is not in that set will still be copied for the multi-buffer just like it would for a standard buffer. A chunk can be explicitly removed from a buffer's set with the remove- m-buffer-chunk command. The last new command added is get-m-buffer-chunks which will return a list of the chunks currently in the set for a given multi-buffer. The buffer-chunk command has also been modified such that when it displays the information for a multi-buffer the set of potential chunks will be displayed in curly braces after the chunk name if there is such a set currently associated with the multi-buffer. Not every chunk can be added to a potential set for a multi-buffer. Essentially, only those chunks which are not referenced by modules other than the one with the multi-buffer are available to be in the potential set of a multi-buffer. Thus, chunks which have been cleared from a buffer and chunks which have been explicitly added into declarative memory can not be put into a multi-buffer's potential set. Additionally, if one wants to explicitly mark chunks as unavilable for the potential set of a multi-buffer (which a module may want to do to avoid outside modifications of its chunks) then setting the buffer-set-invalid parameter of a chunk to t will prevent that chunk from being added to any multi-buffer's potential set. Any chunk which is in a potential set for a buffer but becomes invalid for the potential set of a multi-buffer (which could happen if more than one multi-buffer had the same chunk in its potential set and one of those buffers clears that chunk) that chunk will be copied on any later attempts to put it into that multi-buffer. This new addition is the first step in a larger experimental change which is being tried out. It seems like this could be useful to others as well and thus was made available on its own. These new mechanisms may change or be removed if they don't seem to work out. So, for now the reference manual is not being updated to cover this and it's a "use at your own risk" mechanism. The commented example interactions below should provide some context on how to use the new commands. If you want to use this or have any questions or comments on it please let me know. ;;; Create a new module with 2 multi-buffers called foo and bar that have the ;;; defaults for all the other potential settings. CG-USER(1): (define-module :foo ((foo nil nil nil nil t)(bar nil nil nil nil t)) nil :query goal-style-query :version "" :documentation "") :FOO ;;; Create a model with three chunks that aren't in DM and one which is. CG-USER(2): (define-model foo (sgp :v t) (define-chunks (a isa chunk) (b isa chunk) (c isa chunk)) (add-dm (d isa chunk))) FOO ;;; Note that the new buffers are empty and nothing is different at the start. CG-USER(3): (buffer-chunk foo bar) FOO: NIL BAR: NIL (NIL NIL) ;;; Indicate some chunks to not be copied for each of the new buffers and notice ;;; that the chunk in DM can't be used as one of the potential set chunks. CG-USER(4): (store-m-buffer-chunk 'foo 'a) A CG-USER(5): (store-m-buffer-chunk 'foo 'b) B CG-USER(6): (store-m-buffer-chunk 'bar 'b) B CG-USER(7): (store-m-buffer-chunk 'bar 'c) C CG-USER(8): (store-m-buffer-chunk 'bar 'd) #|Warning: store-m-buffer-chunk cannot store D in a buffer set because it has been marked as invalid for a buffer set most likely because it has been previously cleared from a buffer |# NIL ;;; See the potential sets for the two new buffers wutg the buffer-chunk command. CG-USER(9): (buffer-chunk foo bar) FOO: NIL {A B} BAR: NIL {C B} (NIL NIL) ;;; Set some chunks into the new buffers and the goal buffer for reference. CG-USER(10): (set-buffer-chunk 'foo 'a) A CG-USER(11): (set-buffer-chunk 'bar 'b) B CG-USER(12): (set-buffer-chunk 'goal 'a) A-0 ;;; Show the chunks in the buffers noting that foo and bar did not copy the ;;; chunks unlike the goal buffer since those chunks were in their respective ;;; potential sets. CG-USER(13): (buffer-chunk goal foo bar) GOAL: A-0 [A] A-0 ISA CHUNK FOO: A {A B} A ISA CHUNK BAR: B {C B} B ISA CHUNK (A-0 A B) ;;; Overwrite the chunk in the foo buffer so as not to clear it. CG-USER(14): (overwrite-buffer-chunk 'foo 'd) D-0 ;;; Note that the chunk was copied since it's not in the potential set and ;;; that the potential set is unchanged since the previous chunk was not ;;; cleared from the buffer. CG-USER(15): (buffer-chunk foo) FOO: D-0 [D] {A B} D-0 ISA CHUNK (D-0) ;;; Same thing happens for the c chunk because it's not in the potential set ;;; for the foo buffer (though it is in the potential set for bar). CG-USER(16): (set-buffer-chunk 'foo 'c) C-0 CG-USER(17): (buffer-chunk foo) FOO: C-0 [C] {A B} C-0 ISA CHUNK (C-0) ;;; Now set foo back to a chunk that is in its potential set and see that again ;;; it is not copied. CG-USER(18): (set-buffer-chunk 'foo 'a) A CG-USER(19): (buffer-chunk foo) FOO: A {A B} A ISA CHUNK (A) ;;; Now explicitly clear those buffers and notice that in addition to being ;;; empty the chunk that was there is removed from the corresponding potential ;;; set since it is no longer valid as a potential chunk since other modules ;;; can have references due to the clearing. CG-USER(20): (clear-buffer 'foo) A CG-USER(21): (buffer-chunk foo) FOO: NIL {B} (NIL) CG-USER(22): (clear-buffer 'bar) B CG-USER(23): (buffer-chunk foo bar) FOO: NIL {B} BAR: NIL {C} (NIL NIL) ;;; Now try setting foo to b which is in its potential set, but which has been ;;; made invalid since it was cleared from bar, and see that it is copied now. CG-USER(24): (set-buffer-chunk 'foo 'b) B-0 CG-USER(25): (buffer-chunk foo) FOO: B-0 [B] {B} B-0 ISA CHUNK (B-0) ;;; Explicitly remove the chunk c from bar's potential set and then set bar ;;; to have c in it and note that it was copied. CG-USER(26): (remove-m-buffer-chunk 'bar 'c) C CG-USER(27): (set-buffer-chunk 'bar 'c) C-1 CG-USER(28): (buffer-chunk bar) BAR: C-1 [C] C-1 ISA CHUNK (C-1) ------------------------------------------------------------------------ r788 | db30 | 2009-09-08 09:24:21 -0400 (Tue, 08 Sep 2009) | 1 line Changed paths: M /actr6/framework/device-interface.lisp Fixed the key-to-command mapping for the period. ------------------------------------------------------------------------ r787 | db30 | 2009-08-31 10:21:06 -0400 (Mon, 31 Aug 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Minor updates to the docs. ------------------------------------------------------------------------ r786 | db30 | 2009-08-31 10:01:14 -0400 (Mon, 31 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added a warning to delete-visicon-item because it can cause problems if :delete-visicon-chunks and :test-feats are both true. ------------------------------------------------------------------------ r785 | db30 | 2009-08-28 14:27:22 -0400 (Fri, 28 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added an update-visicon-item command to go along with the add- & delete- ones. ------------------------------------------------------------------------ r784 | db30 | 2009-08-28 09:42:08 -0400 (Fri, 28 Aug 2009) | 8 lines Changed paths: M /actr6/core-modules/vision.lisp Added an optional update parameter to the add/delete-visicon-item commands. If it's given as nil then the buffer stuffing and potential reattending aren't checked. That can make multiple add/deletes faster since only the last one needs to do the updating, and it also allows for multiple adds without the first one that meets the visloc-default specs being the only one that could be stuffed into the location buffer. ------------------------------------------------------------------------ r783 | db30 | 2009-08-27 13:51:11 -0400 (Thu, 27 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Updates to make add-visicon-item and delete-visicon-item more efficient. ------------------------------------------------------------------------ r782 | db30 | 2009-08-27 12:12:30 -0400 (Thu, 27 Aug 2009) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Updated production compilation to allow partial matched productions to be composed. ------------------------------------------------------------------------ r781 | db30 | 2009-08-21 09:19:55 -0400 (Fri, 21 Aug 2009) | 1 line Changed paths: A /actr6/extras/base-level-inhibition A /actr6/extras/base-level-inhibition/Cogsci 2009 Lebiere Final Revised.pdf A /actr6/extras/base-level-inhibition/Cogsci09-Lebiere-Best.pdf A /actr6/extras/base-level-inhibition/bl-inhibition.lisp A /actr6/extras/base-level-inhibition/free-recall.lisp A /actr6/extras/base-level-inhibition/readme.txt Adding a module to extras which implements the Lebiere & Best short-term base-level inhibition change to activations. ------------------------------------------------------------------------ r780 | db30 | 2009-08-20 11:58:11 -0400 (Thu, 20 Aug 2009) | 1 line Changed paths: A /actr6/examples/bst-learn-ppm.lisp Added a version of the BST model from unit 6 which uses only two choice productions and PPM instead of a fixed 'decide threshold' to the examples directory. ------------------------------------------------------------------------ r779 | db30 | 2009-08-18 09:09:26 -0400 (Tue, 18 Aug 2009) | 1 line Changed paths: M /actr6/test-models/test-ppm.lisp A /actr6/test-models/test-ppm.ref Added some more tests to the ppm test model and a reference run. ------------------------------------------------------------------------ r778 | db30 | 2009-08-17 15:39:32 -0400 (Mon, 17 Aug 2009) | 1 line Changed paths: M /actr6/test-models/test-ppm.lisp Updated the ppm test model to handle different production matching situations. ------------------------------------------------------------------------ r777 | db30 | 2009-08-17 14:14:57 -0400 (Mon, 17 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Updated the :ppm code to work better with variables and p*. ------------------------------------------------------------------------ r776 | db30 | 2009-08-14 14:28:34 -0400 (Fri, 14 Aug 2009) | 17 lines Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp Updated some of the procedural commands to work better when :ppm is turned on. In particular, whynot now indicates when a production isn't a perfect match by stating that and showing the partial matched slots and similarities in the instantiation. A partially matched slot shows the production's slot value, the buffer's current slot value, and the similarity between them: Production STATE1 partially matches the current state: (P STATE1 =GOAL> ISA GOAL STATE [STATE1, STATEA, -0.1] ==> =GOAL> STATE STATEB ) ------------------------------------------------------------------------ r775 | db30 | 2009-08-13 16:07:05 -0400 (Thu, 13 Aug 2009) | 55 lines Changed paths: M /actr6/core-modules/procedural.lisp A /actr6/test-models/test-ppm.lisp Added a "new" mechanism to the procedural model for experimentation. The new concept is to allow partial matching to occur on the LHS in the tests of the buffers' slots. Here is how it works right now: If the :ppm parameter (procedural partial matching) is set to nil then there is no change in how production matching occurs. This is the default value and thus all existing models will continue to work exactly the same as they did before this was added. If :ppm is set to a number, then all of the slots tested for equality on the LHS of a production (those without a modifier or with an explicit = modifier) will be allowed to have a partial matching. The slot value will be considered a match if: - it is a symbolic match as would normally occur without this addition OR - there is a similarity value between the indicated value and the value in the slot that is > the maximum similarity difference The similarity value used is the standard one returned by the declarative similarity command and thus the existing :similarity-hook can be used if custom similarities are needed. The requirement that it be strictly greater than the max difference means that only things which have an explicit similarity setting can possibly be mismatched, and it provides a way to specify a "don't match these in the productions" even if a similarity value may be needed for declarative retrieval purposes. All slots must still be a match for the production to be considered in the conflict set. If all of the production's tests are perfect matches then its utility will be unaffected. If any slot is mismatched, then the utility of the production will be adjusted, by default, by adding the similarity of all the mismatches times a penalty factor. The penalty factor will be the setting of :ppm. Alternatively, there is a hook, :ppm-hook, which can be used to override the utility penalty when slot tests are mismatched. The hook function will be passed a production name and a list of mismatch lists, one for each mismatch which occurred while testing the named production. A mismatch list will be a 5 element list consisting of: a buffer name, a slot name, the requested slot value, the actual value in the slot of the chunk in the buffer, and the reported similarity between those two items. If the hook returns a number that will be added to the production's utility, any other return value will result in the default calculation being added. There is a test model in test-models to show this in action (though there isn't a reference output for it yet). ------------------------------------------------------------------------ r774 | db30 | 2009-08-13 13:54:14 -0400 (Thu, 13 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Fix a bug so that activation trace info isn't shown when the similarity command is used. ------------------------------------------------------------------------ r773 | db30 | 2009-08-12 14:07:21 -0400 (Wed, 12 Aug 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/modules/utility-and-reward-1.lisp Added a :utility-offsets parameter to allow adding extra components to the default utility calculation. ------------------------------------------------------------------------ r772 | db30 | 2009-08-12 08:57:19 -0400 (Wed, 12 Aug 2009) | 1 line Changed paths: M /actr6/devices/lw/device.lisp Updated the LispWorks device so that text items get the correct color slot value. ------------------------------------------------------------------------ r771 | db30 | 2009-08-05 14:59:58 -0400 (Wed, 05 Aug 2009) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/docs/reference-manual.doc Added a new parameter to declarative, :activation-offsets, which is a hook to allow adding new components into the activation equation. ------------------------------------------------------------------------ r770 | db30 | 2009-08-03 15:54:05 -0400 (Mon, 03 Aug 2009) | 1 line Changed paths: M /actr6/docs/EnvironmentManual.doc M /actr6/extras/history-tools/76-ptrace-button.tcl Added buttons to save the image in the production history tool. ------------------------------------------------------------------------ r769 | db30 | 2009-07-22 14:59:17 -0400 (Wed, 22 Jul 2009) | 1 line Changed paths: M /actr6/examples/act-r-6-solutions.zip M /actr6/test-models/bst-learn.lisp M /actr6/test-models/fan.lisp M /actr6/test-models/paired-learning-pstar.lisp M /actr6/test-models/paired-learning.lisp M /actr6/test-models/paired.lisp M /actr6/test-models/solution-tests.zip M /actr6/test-models/sperling.lisp M /actr6/tutorial/unit3/sperling.lisp M /actr6/tutorial/unit3/subitize.lisp M /actr6/tutorial/unit3/unit3_exp.doc M /actr6/tutorial/unit4/paired.lisp M /actr6/tutorial/unit4/unit4_exp.doc M /actr6/tutorial/unit4/zbrodoff.lisp M /actr6/tutorial/unit5/fan.lisp M /actr6/tutorial/unit5/unit5_exp.doc M /actr6/tutorial/unit6/bst-learn.lisp M /actr6/tutorial/unit6/choice.lisp M /actr6/tutorial/unit6/unit6_exp.doc M /actr6/tutorial/unit7/paired-learning-pstar.lisp M /actr6/tutorial/unit7/paired-learning.lisp Changed defconstant to defvar in the model files to avoid issues in some Lisps. ------------------------------------------------------------------------ r768 | db30 | 2009-07-22 08:41:10 -0400 (Wed, 22 Jul 2009) | 1 line Changed paths: M /actr6/extras/threads/threads.lisp Fixed a bug in the threaded cognition code that had broken the requested/unrequested queries. ------------------------------------------------------------------------ r767 | db30 | 2009-07-17 16:01:57 -0400 (Fri, 17 Jul 2009) | 1 line Changed paths: M /actr6/environment/server.lisp Fix to stop the occasional error on initial Environment connection in some Lisps. ------------------------------------------------------------------------ r766 | db30 | 2009-07-15 15:50:57 -0400 (Wed, 15 Jul 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Very minor change to remove some unintended highlighting in the doc. ------------------------------------------------------------------------ r765 | db30 | 2009-07-09 14:45:40 -0400 (Thu, 09 Jul 2009) | 1 line Changed paths: M /actr6/examples/act-r-6-solutions.zip M /actr6/test-models/solution-tests.zip Update the reference model for better use in testing. ------------------------------------------------------------------------ r764 | db30 | 2009-07-09 10:20:48 -0400 (Thu, 09 Jul 2009) | 5 lines Changed paths: M /actr6/examples/act-r-6-solutions.zip A /actr6/test-models/siegler.lisp A /actr6/test-models/siegler.ref M /actr6/test-models/solution-tests.zip A /actr6/tutorial/unit5/1hit-blackjack.lisp M /actr6/tutorial/unit5/siegler.lisp M /actr6/tutorial/unit5/unit5.doc M /actr6/tutorial/unit5/unit5_exp.doc M /actr6/tutorial/unit7/unit7_exp.doc New Unit 5 materials for the tutorial. The siegler model has been reworked as an example and a new assignment model has been added. ------------------------------------------------------------------------ r763 | db30 | 2009-07-08 14:52:20 -0400 (Wed, 08 Jul 2009) | 1 line Changed paths: M /actr6/test-models/performance/simple-production-test.lisp Minor improvement to the model for use in testing. ------------------------------------------------------------------------ r762 | db30 | 2009-07-07 10:10:08 -0400 (Tue, 07 Jul 2009) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc M /actr6/tutorial/unit3/unit3.doc Some minor unit edits. ------------------------------------------------------------------------ r761 | db30 | 2009-06-09 11:37:06 -0400 (Tue, 09 Jun 2009) | 1 line Changed paths: M /actr6/docs/EnvironmentManual.doc M /actr6/docs/QuickStart.txt M /actr6/environment/server.lisp Upped the default delay for run-environment to 12 seconds as a safety measure. ------------------------------------------------------------------------ r760 | db30 | 2009-06-08 16:14:49 -0400 (Mon, 08 Jun 2009) | 11 lines Changed paths: M /actr6/docs/EnvironmentManual.doc M /actr6/docs/QuickStart.txt M /actr6/environment/server.lisp Added a run-environment command for LispWorks and ACL under Windows and Mac OS X. This command can be used to both start the appropriate Environment application and then connect ACT-R to it -- instead of running the app and then calling start-environment you can just call run-environment. Right now it doesn't have any real error detection or handling and just assumes that the app starts and is available after 5 seconds (by default). A delay time in seconds can be passed as an optional parameter to run- enviroment if 5 seconds isn't long enough for a particular machine. ------------------------------------------------------------------------ r759 | db30 | 2009-06-03 15:43:26 -0400 (Wed, 03 Jun 2009) | 1 line Changed paths: M /actr6/commands/conflict-tree.lisp M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Updates to the conflict tree code to help prevent needlessly large trees. ------------------------------------------------------------------------ r758 | db30 | 2009-06-02 10:50:35 -0400 (Tue, 02 Jun 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Updated some code so that environment connections work with RMCL (the new MCL which works on intel machines under Rosetta). ------------------------------------------------------------------------ r757 | db30 | 2009-05-22 13:26:14 -0400 (Fri, 22 May 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Fixed an issue with production parsing which would allow a production like this to go through: (p test =goal> free ==> ...). ------------------------------------------------------------------------ r756 | db30 | 2009-05-21 16:13:13 -0400 (Thu, 21 May 2009) | 1 line Changed paths: M /actr6/extras/threads/README.txt M /actr6/extras/threads/threads.lisp M /actr6/extras/threads/threads.pdf Updated version of the threaded cognition files. ------------------------------------------------------------------------ r755 | db30 | 2009-05-20 15:54:32 -0400 (Wed, 20 May 2009) | 1 line Changed paths: A /actr6/docs/EnvironmentManual.doc M /actr6/docs/reference-manual.doc Added an updated version of the Environment's manual to the docs. ------------------------------------------------------------------------ r754 | db30 | 2009-05-06 13:56:51 -0400 (Wed, 06 May 2009) | 1 line Changed paths: M /actr6/test-models/bst-learn.ref Updated bst reference model because of differences in visual-location names. ------------------------------------------------------------------------ r753 | db30 | 2009-05-06 12:53:46 -0400 (Wed, 06 May 2009) | 1 line Changed paths: A /actr6/test-models/thorough-p-test.lisp A /actr6/test-models/thorough-p-test.ref Added a test model to thoroughly test production matching to better catch bugs like those fixed in 746 and 752. ------------------------------------------------------------------------ r752 | db30 | 2009-05-05 12:48:40 -0400 (Tue, 05 May 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Fixed a bug with < tests in productions incorrectly matching for 'non-number' values. ------------------------------------------------------------------------ r751 | db30 | 2009-05-04 10:09:33 -0400 (Mon, 04 May 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp Fixed a bug with symbols in variablized slots not being defined as chunks when parsing p* productions. ------------------------------------------------------------------------ r750 | db30 | 2009-05-01 15:57:01 -0400 (Fri, 01 May 2009) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp M /actr6/framework/scheduling.lisp Added tests and warnings to indicate when run is called recursively. ------------------------------------------------------------------------ r749 | db30 | 2009-04-29 12:12:09 -0400 (Wed, 29 Apr 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Updated the visual phrase! chunk creation so that it gets a color based on the colors of the words in the phrase. ------------------------------------------------------------------------ r748 | byrne | 2009-04-28 18:00:11 -0400 (Tue, 28 Apr 2009) | 3 lines Changed paths: M /actr6/core-modules/vision.lisp Fixed minor bug in color value for phrases--the phrase will now have the same color as the majority of the words. ------------------------------------------------------------------------ r747 | db30 | 2009-04-27 12:43:04 -0400 (Mon, 27 Apr 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Updated stuff-visloc-buffer so that when add-visicon-items is used there's only one 'stuffing' scheduled at a time. ------------------------------------------------------------------------ r746 | db30 | 2009-04-23 15:20:21 -0400 (Thu, 23 Apr 2009) | 1 line Changed paths: M /actr6/framework/chunks.lisp Fixed a bug introduced in r701 with matching slots to t when it's not a chunk. ------------------------------------------------------------------------ r745 | db30 | 2009-04-14 10:11:25 -0400 (Tue, 14 Apr 2009) | 1 line Changed paths: M /actr6/environment/server.lisp M /actr6/support/uni-files.lisp Fixing a couple of issues found in further testing of the last commit. ------------------------------------------------------------------------ r744 | db30 | 2009-04-13 13:48:09 -0400 (Mon, 13 Apr 2009) | 1 line Changed paths: M /actr6/environment/handlers.lisp M /actr6/environment/server.lisp M /actr6/support/uni-files.lisp Changed uni-send-string so that it doesn't automatical append a newline and updated the functions which used it. ------------------------------------------------------------------------ r743 | db30 | 2009-04-08 12:54:05 -0400 (Wed, 08 Apr 2009) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Bad line endings on the vision.lisp file in the last commit. ------------------------------------------------------------------------ r742 | db30 | 2009-04-08 12:52:20 -0400 (Wed, 08 Apr 2009) | 13 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc A few updates to the vision module: Improved performance of proc-display for "large" displays when :clear t isn't being used by adding a comparison mechanism similar to the fast-merge used in DM. Added a new command, remove-visual-finsts, which does essentially what its name says (see the manual for more details). Fixed a bug with process-display. When :clear t was given and the build-vis- locs-for methods returned the same visual-location chunks it would retain the finsts for those items and they'd revert to their previous attended status after they were no longer "new". They now get reset appropriately. ------------------------------------------------------------------------ r741 | db30 | 2009-03-24 15:38:56 -0400 (Tue, 24 Mar 2009) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Update to make sure :dcnn is completely disabled when :ncnar is set to nil. ------------------------------------------------------------------------ r740 | db30 | 2009-03-10 14:56:40 -0400 (Tue, 10 Mar 2009) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Changed when the module updates get called which makes the device updates closer to how they were in ACT-R 5. ------------------------------------------------------------------------ r739 | db30 | 2009-02-23 09:42:33 -0500 (Mon, 23 Feb 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Some more updates to hopefully help issues with the environment in CCL on x86 machines. ------------------------------------------------------------------------ r738 | db30 | 2009-02-20 14:34:27 -0500 (Fri, 20 Feb 2009) | 1 line Changed paths: M /actr6/tutorial/unit3/unit3.doc Fixed a typo in the unit3 doc (a missing : on nearest in a visual-location request). ------------------------------------------------------------------------ r737 | db30 | 2009-02-20 13:53:11 -0500 (Fri, 20 Feb 2009) | 1 line Changed paths: A /actr6/extras/threads A /actr6/extras/threads/README.txt A /actr6/extras/threads/sample.lisp A /actr6/extras/threads/threads.lisp A /actr6/extras/threads/threads.pdf Adding the current version of the threaded cognition module with docs and an example to extras. ------------------------------------------------------------------------ r736 | db30 | 2009-02-16 12:14:12 -0500 (Mon, 16 Feb 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Update the reference manual to be consistent with the last few commits. ------------------------------------------------------------------------ r735 | db30 | 2009-02-13 14:28:57 -0500 (Fri, 13 Feb 2009) | 1 line Changed paths: M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/naming-module.lisp New parameter :short-copy-names added. If set to nil then instead of adding a new -0 to the end of a chunk to name the copy the existing -# is incremented if it has one. ------------------------------------------------------------------------ r734 | db30 | 2009-02-13 12:08:07 -0500 (Fri, 13 Feb 2009) | 1 line Changed paths: M /actr6/framework/chunks.lisp Fix for an issue with growing memory usage for copied chunks in some Lisps. ------------------------------------------------------------------------ r733 | db30 | 2009-02-12 08:54:45 -0500 (Thu, 12 Feb 2009) | 1 line Changed paths: M /actr6/devices/lw/device.lisp Changed the LispWorks device handling of lines to get the color directly from the object. ------------------------------------------------------------------------ r732 | db30 | 2009-02-10 11:29:58 -0500 (Tue, 10 Feb 2009) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp P*'s now don't verify the modification requests before passing them off to a module - allows a module to extend chunk-types like productions can. ------------------------------------------------------------------------ r731 | db30 | 2009-02-10 11:26:25 -0500 (Tue, 10 Feb 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/buffers.lisp Add an optional verify parameter to the module-mod-request functions to allow for modules which can extend chunk-types. ------------------------------------------------------------------------ r730 | db30 | 2009-02-09 14:21:00 -0500 (Mon, 09 Feb 2009) | 1 line Changed paths: M /actr6/devices/lw/uwi.lisp Fixed a bug in how the color was set for creating lines in LispWorks. ------------------------------------------------------------------------ r729 | db30 | 2009-02-09 14:07:09 -0500 (Mon, 09 Feb 2009) | 1 line Changed paths: M /actr6/devices/lw/device.lisp Update by Bruno Emond for the LispWorks device view-loc ((self capi:interface)) method. ------------------------------------------------------------------------ r728 | db30 | 2009-01-26 13:31:48 -0500 (Mon, 26 Jan 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/tutorial/unit3/unit3.doc Minor edits to documentation. ------------------------------------------------------------------------ r727 | db30 | 2009-01-22 12:52:54 -0500 (Thu, 22 Jan 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Fixed a bug in the feature tests added for the last update. ------------------------------------------------------------------------ r726 | db30 | 2009-01-22 08:54:47 -0500 (Thu, 22 Jan 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Update to fix a bug with CMUCL introduced with the last fix for CCL. ------------------------------------------------------------------------ r725 | db30 | 2009-01-08 15:11:20 -0500 (Thu, 08 Jan 2009) | 1 line Changed paths: M /actr6/environment/server.lisp Fixed another potential issue with the environment connection in CCLx86. ------------------------------------------------------------------------ r724 | db30 | 2009-01-08 15:08:19 -0500 (Thu, 08 Jan 2009) | 1 line Changed paths: M /actr6/commands/conflict-tree.lisp Fixed print-conflict-tree (not really a user level command at this point anyway). ------------------------------------------------------------------------ r723 | db30 | 2009-01-06 14:57:33 -0500 (Tue, 06 Jan 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Fixed a problem with the file in the last commit. ------------------------------------------------------------------------ r722 | db30 | 2009-01-06 14:41:51 -0500 (Tue, 06 Jan 2009) | 1 line Changed paths: M /actr6/support/uni-files.lisp Fixed a bug with the environment connection under CCL. ------------------------------------------------------------------------ r721 | db30 | 2009-01-05 12:29:11 -0500 (Mon, 05 Jan 2009) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Added the :use-tree parameter to the docs. ------------------------------------------------------------------------ r720 | db30 | 2008-12-23 15:52:24 -0500 (Tue, 23 Dec 2008) | 12 lines Changed paths: A /actr6/commands/conflict-tree.lisp M /actr6/core-modules/procedural.lisp M /actr6/modules/production-compilation.lisp Added a new parameter in procedural module :use-tree. It defaults to nil, but if set to t enables a new feature of the procedural module. When it is enabled, a decision tree is built when the model is created to use in the first step of production matching to potentially reduce the number of tests needed to find all matching productions. Still slightly experimental, but turning it on should not break models (all the tests are successful) and it should improve the time it takes to run a model. ------------------------------------------------------------------------ r719 | db30 | 2008-12-15 10:51:29 -0500 (Mon, 15 Dec 2008) | 1 line Changed paths: M /actr6/framework/model.lisp Fixed the bug with the tertiary module reset not being called on initial model creation. ------------------------------------------------------------------------ r718 | db30 | 2008-12-12 13:34:35 -0500 (Fri, 12 Dec 2008) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp A /actr6/test-models/bind-test.lisp A /actr6/test-models/bind-test.ref Fixed a bug with !bind! conditions introduced in r714 and added a test model to catch such problems in the future. ------------------------------------------------------------------------ r717 | db30 | 2008-12-11 10:01:29 -0500 (Thu, 11 Dec 2008) | 7 lines Changed paths: M /actr6/core-modules/declarative-memory.lisp There was a bug in the last update because a chunk wasn't recorded as having a fan-in to itself even though the fan-out was incremented. The new mechanism also doesn't really save space in general - only when chunks have fan-in values greater than 1. Otherwise it's just shifting where the list is stored and not decreasing it. ------------------------------------------------------------------------ r716 | db30 | 2008-12-10 16:48:50 -0500 (Wed, 10 Dec 2008) | 7 lines Changed paths: M /actr6/core-modules/declarative-memory.lisp A /actr6/test-models/sji-merge.lisp A /actr6/test-models/sji-merge.ref Changed the internal recording of fan information to improve both the space needed and the time it takes to compute the fan values. It also now properly handles the situation where a chunk has references to chunks which merge into DM after it does. [Run the new sji-merge test model in the old and new versions to see the difference in the last retrieval]. ------------------------------------------------------------------------ r715 | db30 | 2008-12-10 16:11:54 -0500 (Wed, 10 Dec 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp Added a new copy-from function to extend-chunks so one may access the original chunk instead of just its value when copying a parameter. ------------------------------------------------------------------------ r714 | db30 | 2008-12-08 14:15:06 -0500 (Mon, 08 Dec 2008) | 4 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp M /actr6/docs/reference-manual.doc Significant overhaul of the internal representation of productions. Should be no change to the operation of running models. The only change one should see is more detailed information from whynot because now it can indicate specifically which slot causes a buffer mismatch. ------------------------------------------------------------------------ r713 | db30 | 2008-12-08 13:11:29 -0500 (Mon, 08 Dec 2008) | 1 line Changed paths: M /actr6/framework/chunk-types.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/model.lisp Added code to record/get the size of the largest chunk-type (for internal use). ------------------------------------------------------------------------ r712 | db30 | 2008-12-01 13:13:36 -0500 (Mon, 01 Dec 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/internal-structures.lisp M /actr6/framework/model.lisp M /actr6/framework/modules.lisp Added the option of a 3rd reset function in module definition which will be called after the user code in the model definition. ------------------------------------------------------------------------ r711 | db30 | 2008-12-01 12:50:23 -0500 (Mon, 01 Dec 2008) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Added a lookup table for productions instead of searching the list. ------------------------------------------------------------------------ r710 | db30 | 2008-11-25 13:57:38 -0500 (Tue, 25 Nov 2008) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp A little more abstraction added into the procedural code. ------------------------------------------------------------------------ r709 | db30 | 2008-11-25 12:10:20 -0500 (Tue, 25 Nov 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp Adding some internal abstraction to the procedural code to better handle adding/removing productions. ------------------------------------------------------------------------ r708 | db30 | 2008-11-13 13:08:46 -0500 (Thu, 13 Nov 2008) | 10 lines Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/docs/reference-manual.doc M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/naming-module.lisp Added the :dcsc-hook parameter to the naming module and updated the declarative module's code to use that to fix a subtle (and likely rare) bug that's been around ever since normalize-chunk-names was added. The bug was basically that with :fast-merge set to t (the default) it was possible to have chunks not merge correctly into DM if normalizing modified a chunk that was already in DM. The result would have been identical chunks in DM and a lack of a presentation to the pre-existing chunk. ------------------------------------------------------------------------ r707 | db30 | 2008-11-11 09:43:13 -0500 (Tue, 11 Nov 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Fixed a bug in the chunk copy code which broke how parameters got copied. ------------------------------------------------------------------------ r706 | db30 | 2008-11-10 12:08:03 -0500 (Mon, 10 Nov 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp Applied the bug fix from r697 to the p* productions too. ------------------------------------------------------------------------ r705 | db30 | 2008-11-04 11:46:27 -0500 (Tue, 04 Nov 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp Performance improvement for conflict-resolution - cahces the buffer chunks instead of repeated lookups for each production. ------------------------------------------------------------------------ r704 | db30 | 2008-11-04 08:26:59 -0500 (Tue, 04 Nov 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor bug fix because compiling and loading the chunks file lead to parameter copy functions being called twice. ------------------------------------------------------------------------ r703 | db30 | 2008-11-03 12:22:35 -0500 (Mon, 03 Nov 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Updated the adding chunk parameters section to better describe the initializing. ------------------------------------------------------------------------ r702 | db30 | 2008-11-03 12:21:03 -0500 (Mon, 03 Nov 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp Changed teh internal mechanism of storing chunk parameters to improve performance. ------------------------------------------------------------------------ r701 | db30 | 2008-10-30 12:53:58 -0400 (Thu, 30 Oct 2008) | 1 line Changed paths: M /actr6/framework/buffers.lisp M /actr6/framework/chunk-spec.lisp M /actr6/framework/chunks.lisp M /actr6/framework/printing.lisp M /actr6/test-models/performance/run-time-productions-only.lisp Some minor performance tweaks to the chunk matching and buffer copy code. ------------------------------------------------------------------------ r700 | db30 | 2008-10-28 08:03:44 -0400 (Tue, 28 Oct 2008) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Fixed a bug in move-cursor which would crash if a visicon chunk was deleted at the 'wrong' time. ------------------------------------------------------------------------ r699 | db30 | 2008-10-28 07:53:33 -0400 (Tue, 28 Oct 2008) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Fixed an issue with tildes occurring in the trace. ------------------------------------------------------------------------ r698 | db30 | 2008-10-27 11:09:50 -0400 (Mon, 27 Oct 2008) | 25 lines Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/model.lisp M /actr6/framework/naming-module.lisp M /actr6/framework/scheduling.lisp M /actr6/test-models/bst-learn.ref M /actr6/test-models/bst-nolearn.ref M /actr6/test-models/fan.ref M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit5/unit5.doc Adding a new parameter :dcnn (dynamic chunk name normalizing) to enable the system to work like the older versions of ACT-R which updated the merged chunk names as the model runs. This parameter works in conjunction with the :ncnar parameter. If :ncnar is nil no name normalizing occurs. If :ncnar is not nil, then the merged chunk names will be normalized. If :dcnn is t then as soon as two chunks merge all references to the merged name in the slots of chunks will be replaced with the true chunk name. If :dcnn is nil, then the normalizing will occur only after the model run stops (as it did prior to this update). This should not affect the operation of any of the standard modules of the system, and models should produce the same results regardless of the settings of these parameters. The only difference should be that the names of chunks shown in the trace may differ with different values of :dcnn - the chunk won't be different but the name used to reference it could be. The default values for both :dcnn and :ncnar are t. These parameters are intended primarily for help in debugging models. As before, to maximize the performance of the system normalizing should be disabled by setting :ncnar to nil. ------------------------------------------------------------------------ r697 | db30 | 2008-10-23 14:05:57 -0400 (Thu, 23 Oct 2008) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp Fixed a bug in production parsing introduced in r627 which could lead to 'bad' productions if the conditions have syntax errors. ------------------------------------------------------------------------ r696 | db30 | 2008-10-15 09:12:38 -0400 (Wed, 15 Oct 2008) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/00-copyrights.tcl M /actr6/environment/GUI/server.tcl Updated the enviroment files to get the right directory for the standalones (fix for r689). ------------------------------------------------------------------------ r695 | db30 | 2008-10-13 14:25:46 -0400 (Mon, 13 Oct 2008) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp Fixed all the declarative commands so that they work right if passed a 'merged' name instead of the original chunk's name. ------------------------------------------------------------------------ r694 | db30 | 2008-10-13 13:35:04 -0400 (Mon, 13 Oct 2008) | 1 line Changed paths: M /actr6/docs/bold-tools-readme.txt Updated the docs for the BOLD tools since they're enabled by default now. ------------------------------------------------------------------------ r693 | db30 | 2008-10-10 11:49:18 -0400 (Fri, 10 Oct 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Minor edits to the manual. ------------------------------------------------------------------------ r692 | db30 | 2008-10-10 11:47:13 -0400 (Fri, 10 Oct 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Performance improvement for normalize-chunk-names. ------------------------------------------------------------------------ r691 | db30 | 2008-10-10 08:36:26 -0400 (Fri, 10 Oct 2008) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp M /actr6/support/uni-files.lisp Adjusted some of the #+ switches since Clozure Common Lisp (the new OpenMCL) doesn't have :mcl on *features*. ------------------------------------------------------------------------ r690 | db30 | 2008-09-29 14:04:34 -0400 (Mon, 29 Sep 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc A /actr6/examples/creating-modules/all-components-model.lisp A /actr6/examples/creating-modules/all-components-module.lisp M /actr6/examples/creating-modules/simple-goal-style.lisp Updated the docs on defineing modules and adding another example module & model. ------------------------------------------------------------------------ r689 | db30 | 2008-09-22 13:54:36 -0400 (Mon, 22 Sep 2008) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/12-ctrl-panel-open-button.tcx M /actr6/environment/GUI/server.tcl Changed the starting directory for the open button to the actr6 'top level' dir. ------------------------------------------------------------------------ r688 | db30 | 2008-09-22 13:04:20 -0400 (Mon, 22 Sep 2008) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/22-ctrl-panel-reset-buttons.tcl The reload button in the environment now saves an open model file before reloading if the option is set to do so. ------------------------------------------------------------------------ r687 | db30 | 2008-09-22 09:10:28 -0400 (Mon, 22 Sep 2008) | 1 line Changed paths: M /actr6/docs/QuickStart.txt Trying to make the quickstart clearer. ------------------------------------------------------------------------ r686 | db30 | 2008-09-19 14:44:04 -0400 (Fri, 19 Sep 2008) | 1 line Changed paths: A /actr6/examples/creating-modules/simple-goal-style-model.lisp A /actr6/examples/creating-modules/simple-goal-style.lisp Added an example module which use the goal-style commands to create it and a model which uses it. ------------------------------------------------------------------------ r685 | db30 | 2008-09-19 14:41:55 -0400 (Fri, 19 Sep 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Added the section on defining modules. ------------------------------------------------------------------------ r684 | db30 | 2008-09-19 14:40:59 -0400 (Fri, 19 Sep 2008) | 1 line Changed paths: M /actr6/core-modules/goal.lisp M /actr6/support/goal-style-module.lisp Added a goal-style-mod-request to the goal-style support code. ------------------------------------------------------------------------ r683 | db30 | 2008-09-18 13:37:21 -0400 (Thu, 18 Sep 2008) | 1 line Changed paths: M /actr6/devices/lw/device.lisp M /actr6/devices/lw/uwi.lisp M /actr6/extras/emma.lisp Updated the LispWorks GUI/device code with improvements sent by LispWorks developers. ------------------------------------------------------------------------ r682 | db30 | 2008-09-16 10:01:28 -0400 (Tue, 16 Sep 2008) | 1 line Changed paths: A /actr6/extras/blending A /actr6/extras/blending/blending-read-me.txt A /actr6/extras/blending/blending-test-1.lisp A /actr6/extras/blending/blending-test-2.lisp A /actr6/extras/blending/blending-test-3.lisp A /actr6/extras/blending/blending-test-4.lisp A /actr6/extras/blending/blending.lisp A /actr6/extras/blending/blending.pdf Added a module to implement blended retrievals in extras. See its read-me for details. ------------------------------------------------------------------------ r681 | db30 | 2008-09-03 14:34:36 -0400 (Wed, 03 Sep 2008) | 1 line Changed paths: M /actr6/framework/modules.lisp Minor changes so that define-module and define-module-fct report the same warnings. ------------------------------------------------------------------------ r680 | db30 | 2008-08-29 11:42:46 -0400 (Fri, 29 Aug 2008) | 1 line Changed paths: M /actr6/framework/modules.lisp Fixed a typo in the warnings of undefine-module-fct. ------------------------------------------------------------------------ r679 | db30 | 2008-08-29 11:39:01 -0400 (Fri, 29 Aug 2008) | 1 line Changed paths: M /actr6/framework/modules.lisp Fixed a bug when testing for multiple meta-processes in undefine-module-fct. ------------------------------------------------------------------------ r678 | db30 | 2008-08-29 08:09:33 -0400 (Fri, 29 Aug 2008) | 1 line Changed paths: M /actr6/framework/parameters.lisp Updatted define-parameter so it check all its parameters for valid values. ------------------------------------------------------------------------ r677 | db30 | 2008-08-28 09:31:56 -0400 (Thu, 28 Aug 2008) | 1 line Changed paths: M /actr6/framework/modules.lisp Fixed get-module so that it always returns two values. ------------------------------------------------------------------------ r676 | db30 | 2008-08-21 12:59:46 -0400 (Thu, 21 Aug 2008) | 5 lines Changed paths: M /actr6/framework/model.lisp Added a new macro: with-model-eval. It's basically half way between the current macro and the -fct. This new macro evaluates the first parameter to get the name, but splices in the body to evaluate which should be more convenient in many situations. ------------------------------------------------------------------------ r675 | db30 | 2008-08-21 11:55:58 -0400 (Thu, 21 Aug 2008) | 1 line Changed paths: M /actr6/environment/standalone.lisp Fix for the Windows standalone to help when a model produces an error at load time. ------------------------------------------------------------------------ r674 | db30 | 2008-08-21 09:43:22 -0400 (Thu, 21 Aug 2008) | 1 line Changed paths: A /actr6/extras/history-tools/78-buffer-history.tcl A /actr6/extras/history-tools/buffer-history.lisp M /actr6/extras/history-tools/read-me.txt Added another history tool for the environment. This one records the contents and states of the buffers. ------------------------------------------------------------------------ r673 | db30 | 2008-08-21 08:00:59 -0400 (Thu, 21 Aug 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Minor edits to the declarative section to make it clear time is measured in seconds. ------------------------------------------------------------------------ r672 | db30 | 2008-08-21 07:58:58 -0400 (Thu, 21 Aug 2008) | 1 line Changed paths: M /actr6/environment/handlers.lisp Added another type of handler for the environment display. ------------------------------------------------------------------------ r671 | db30 | 2008-08-20 11:12:03 -0400 (Wed, 20 Aug 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/misc-utils.lisp Added the capture-model-output command. It basically works like no-output except it returns a string with the suppressed output. ------------------------------------------------------------------------ r670 | db30 | 2008-08-20 11:09:38 -0400 (Wed, 20 Aug 2008) | 1 line Changed paths: A /actr6/test-models/performance/retrieval-and-production-sizes.lisp M /actr6/test-models/performance/retrieval-set-size-symbolic.lisp A /actr6/test-models/performance/run-time-productions-only.lisp A /actr6/test-models/performance/scheduler-run-time.lisp M /actr6/test-models/performance/simple-production-test.lisp Adding a few more performance test models and tweaking the ones that were there. ------------------------------------------------------------------------ r669 | db30 | 2008-08-15 12:27:20 -0400 (Fri, 15 Aug 2008) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/72-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/73-ctrl-panel-gt-vert-button.tcl Modified the graphic trace tools so that they set :save-buffer-trace to t automatically if they're opened before the model gets run/reset. ------------------------------------------------------------------------ r668 | db30 | 2008-08-15 11:14:40 -0400 (Fri, 15 Aug 2008) | 5 lines Changed paths: A /actr6/extras/history-tools/77-retrieval-history.tcl M /actr6/extras/history-tools/read-me.txt A /actr6/extras/history-tools/retrieval-history.lisp Added another history tool for the environment in extras. The new tool saves the declarative retrieval requests and the set of chunks which matched them along with their parameters at that time. See the read-me.txt file for more details. ------------------------------------------------------------------------ r667 | db30 | 2008-08-14 12:38:16 -0400 (Thu, 14 Aug 2008) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Fixed a bug with the :retrieval-set-hook - on a failure it was being passed (nil) instead of nil. ------------------------------------------------------------------------ r666 | db30 | 2008-08-13 11:40:23 -0400 (Wed, 13 Aug 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added the history info to vision for the last update. ------------------------------------------------------------------------ r665 | db30 | 2008-08-13 11:34:29 -0400 (Wed, 13 Aug 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Added another visual query scene-change-value primarily for being able to inspect the last scene change proportion. ------------------------------------------------------------------------ r664 | db30 | 2008-08-12 14:32:37 -0400 (Tue, 12 Aug 2008) | 48 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Adding a new query to the vision module to provide a model with a way to detect visual changes other than through the visual-location buffer stuffing. The new query is available for the visual buffer and is called scene-change. The new query responds true to a value of t when there is a "large" change in the visicon. It does not require that the buffer be empty (which buffer stuffing does) and it is not cleared by a visual-location request (which sometimes overwrites the buffer stuffed chunk before a model can detect it). To test for such a situation in a production one would use a query like this: ?visual> scene-change t To determine when to trigger the scene-change during proc-display a proportion of change is computed between the old and new visicon feature sets: change = (d+n)/(o+n) o = the number of items in the old visicon. d = number of items from the old visicon not in the new visicon. n = number of items in the new visicon which were not in the old visicon. If o and n are both 0 then the change is also 0. If the change is greater than or equal to a threshold then the scene-change query will be true. The threshold is set using a new parameter called :scene-change-threshold. The default value is .25 and it can be set to any value [0.0,1.0]. The query will only stay true for a time equal to the visual onset span (the same amount of time that finst markers remain as "new") which defaults to .5 seconds and is set with the :visual-onset-span parameter. The notice can be explicitly cleared by sending a clear-scene-change request to the visual buffer: +visual> isa clear-scene-change That request takes no other parameters. There is no time cost for that request and it does not make the module busy (it will not jam if other requests are being processed). The scene-change notice is also cleared by the existing clear request. ------------------------------------------------------------------------ r663 | db30 | 2008-08-12 09:41:32 -0400 (Tue, 12 Aug 2008) | 1 line Changed paths: M /actr6/extras/history-tools/production-history.lisp Added the :p-history-colors paramter for the production history tool to allow the colors it uses to be changed. ------------------------------------------------------------------------ r662 | db30 | 2008-08-08 06:45:59 -0400 (Fri, 08 Aug 2008) | 1 line Changed paths: M /actr6/extras/old-utility/utility-and-reward.lisp Updated the old utility module to work with recent changes in the procedural module. ------------------------------------------------------------------------ r661 | db30 | 2008-08-07 14:35:08 -0400 (Thu, 07 Aug 2008) | 1 line Changed paths: M /actr6/extras/history-tools/76-ptrace-button.tcl M /actr6/extras/history-tools/production-history.lisp The new trace tool should be able to draw very long traces now, but is a little slower than before. ------------------------------------------------------------------------ r660 | db30 | 2008-08-07 11:01:00 -0400 (Thu, 07 Aug 2008) | 1 line Changed paths: M /actr6/extras/history-tools/76-ptrace-button.tcl M /actr6/extras/history-tools/production-history.lisp M /actr6/extras/history-tools/read-me.txt Updated the production history tool to be a little more user friendly and able to draw longer model runs. ------------------------------------------------------------------------ r659 | db30 | 2008-08-07 11:00:10 -0400 (Thu, 07 Aug 2008) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Modified fctornil so that it doesn't throw an error with some bad parameter values. ------------------------------------------------------------------------ r658 | db30 | 2008-08-06 09:52:18 -0400 (Wed, 06 Aug 2008) | 8 lines Changed paths: D /actr6/environment/GUI/dialogs/76-ptrace-button.tcx A /actr6/extras/history-tools A /actr6/extras/history-tools/76-ptrace-button.tcl A /actr6/extras/history-tools/production-history.lisp A /actr6/extras/history-tools/read-me.txt Added a new tool for the environment under extras/history-tools and removed the crude first approximation of it that was in the dialogs directory. The new tool displays a grid of the productions and all the conflict- resolution events that occurred during the run with the cells indicating how that production was used at that time (selected, in the conflict set, or didn't match). See the read-me file for more details. ------------------------------------------------------------------------ r657 | db30 | 2008-08-06 09:39:39 -0400 (Wed, 06 Aug 2008) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp Added a new internal command for accessing the whynot information. ------------------------------------------------------------------------ r656 | db30 | 2008-08-01 14:32:04 -0400 (Fri, 01 Aug 2008) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Made splice-into-list-des actually destructive to cut out some unneeded consing. ------------------------------------------------------------------------ r655 | db30 | 2008-08-01 13:22:32 -0400 (Fri, 01 Aug 2008) | 1 line Changed paths: A /actr6/test-models/merging-test.lisp A /actr6/test-models/merging-test.ref Adding a test model which checks that chunk matching works right across a merge. ------------------------------------------------------------------------ r654 | db30 | 2008-08-01 13:18:47 -0400 (Fri, 01 Aug 2008) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp M /actr6/modules/utility-and-reward-1.lisp Shifted ownership of the :dat parameter from utility to procedural. ------------------------------------------------------------------------ r653 | db30 | 2008-08-01 13:08:44 -0400 (Fri, 01 Aug 2008) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp Modified conflict-resolution so it doesn't create a new hash-table each time. ------------------------------------------------------------------------ r652 | db30 | 2008-07-31 12:25:35 -0400 (Thu, 31 Jul 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Another minor change to chunk-slot-equal for performance. ------------------------------------------------------------------------ r651 | db30 | 2008-07-31 08:57:17 -0400 (Thu, 31 Jul 2008) | 10 lines Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunk-spec.lisp M /actr6/framework/chunks.lisp Moved chunk-slot-equal from chunk-spec to chunks and removed an equivalent function that was there. Improved chunk-slot-equal so that it doesn't do duplicate lookups of chunks which should improve model run time by 10% or more. Edited the manual for describing how chunk slots get compared to be more precise - the mechanism isn't different but the old description in the manual didn't quite describe the cases correctly. ------------------------------------------------------------------------ r650 | db30 | 2008-07-30 10:44:11 -0400 (Wed, 30 Jul 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Changed an append to nconc in the merging code because performance testing showed that to be a factor over long runs. ------------------------------------------------------------------------ r649 | db30 | 2008-07-30 10:42:15 -0400 (Wed, 30 Jul 2008) | 1 line Changed paths: M /actr6/test-models/performance/dummy-test.lisp A /actr6/test-models/performance/retrieval-request-count-symbolic.lisp A /actr6/test-models/performance/retrieval-set-size-symbolic.lisp M /actr6/test-models/performance/simple-production-test.lisp M /actr6/test-models/performance/tester.cl Adding some new test cases and changed the line endings on the others. ------------------------------------------------------------------------ r648 | db30 | 2008-07-25 14:42:07 -0400 (Fri, 25 Jul 2008) | 1 line Changed paths: A /actr6/test-models/performance A /actr6/test-models/performance/dummy-test.lisp A /actr6/test-models/performance/simple-production-test.lisp A /actr6/test-models/performance/tester.cl Added a new testing tool to test performance speed. See the docs in the tester.cl file for details. ------------------------------------------------------------------------ r647 | db30 | 2008-07-24 12:57:12 -0400 (Thu, 24 Jul 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Updated the TOC so it includes the updates added to support the 'esc nil' warning. ------------------------------------------------------------------------ r646 | db30 | 2008-07-24 11:11:01 -0400 (Thu, 24 Jul 2008) | 12 lines Changed paths: M /actr6/core-modules/vision.lisp Added a :delete-visicon-chunks parameter to vision to toggle whether it purges the old visicon chunks. The default value is t. There shouldn't be many reasons for setting it to nil, but extensions which may rely on the internals of the vision module (like EMMA) might not work right with it set to t. EMMA will be fixed at some point, but until then, and for other extensions, setting this to nil is the easy way to get around problems that deleted chunks create. Note, the virtual device will still purge its chunks regardless of that parameter's setting since those shouldn't be referenced by anything once the corresponding objects are gone (that's one of the reasons that the visicon makes an internal copy). ------------------------------------------------------------------------ r645 | db30 | 2008-07-24 11:02:36 -0400 (Thu, 24 Jul 2008) | 1 line Changed paths: M /actr6/test-models/tracking-test.ref Updated reference run since tracking overwrites report with requested nil now. ------------------------------------------------------------------------ r644 | db30 | 2008-07-24 10:43:19 -0400 (Thu, 24 Jul 2008) | 1 line Changed paths: M /actr6/support/central-parameters.lisp Changed the version # on the central parameters module. ------------------------------------------------------------------------ r643 | db30 | 2008-07-23 11:49:32 -0400 (Wed, 23 Jul 2008) | 1 line Changed paths: M /actr6/framework/parameters.lisp Fixed a bug in the get-parameter-default-value function added with the last update. ------------------------------------------------------------------------ r642 | db30 | 2008-07-23 09:54:58 -0400 (Wed, 23 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/docs/reference-manual.doc M /actr6/framework/parameters.lisp M /actr6/modules/utility-and-reward-1.lisp M /actr6/support/central-parameters.lisp Added a mechanism for providing a warning if :esc is nil but some module's parameters which expect it to be t have been changed. ------------------------------------------------------------------------ r641 | db30 | 2008-07-22 14:38:43 -0400 (Tue, 22 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/speech.lisp Took the require 'central-parameters' out of speech since it didn't use it. ------------------------------------------------------------------------ r640 | db30 | 2008-07-22 14:12:52 -0400 (Tue, 22 Jul 2008) | 6 lines Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp M /actr6/extras/old-utility/utility-and-reward.lisp M /actr6/modules/utility-and-reward-1.lisp Changed how the production :utility parameter gets stored so that whynot can report accurately whether the production was above threshold during its last conflict resolution. This usage corresponds to how the manual describes the :utility parameter, but peviously whynot was incorrectly recomputing and saving a new value. ------------------------------------------------------------------------ r639 | db30 | 2008-07-22 10:22:20 -0400 (Tue, 22 Jul 2008) | 11 lines Changed paths: M /actr6/environment/GUI/dialogs/36-procedural.tcl M /actr6/environment/GUI/dialogs/72-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/73-ctrl-panel-gt-vert-button.tcl Modified the graphic trace tools so that clicking on a box in the production or retrieval row/column will open either the procedural or declarative viewer (as appropriate) with the corresponding item selected. Doesn't work for chunks in other buffers for two reasons: - There isn't a general chunk viewer in the environment. - There's no gurarantee that such a chunk still exixts or if it does that it's the same as it was when the trace ran. ------------------------------------------------------------------------ r638 | db30 | 2008-07-22 09:00:00 -0400 (Tue, 22 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed the 'overlapping text' bug again because it was recently reintroduced. ------------------------------------------------------------------------ r637 | db30 | 2008-07-15 12:12:57 -0400 (Tue, 15 Jul 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Added the 'using buffers' section. ------------------------------------------------------------------------ r636 | db30 | 2008-07-15 09:56:27 -0400 (Tue, 15 Jul 2008) | 1 line Changed paths: M /actr6/extras/emma.lisp Fixed a bug introduced with the last emma update. ------------------------------------------------------------------------ r635 | db30 | 2008-07-15 09:55:51 -0400 (Tue, 15 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Changed the output level for the find-location failure event so it shows in low detail traces. ------------------------------------------------------------------------ r634 | db30 | 2008-07-14 09:51:19 -0400 (Mon, 14 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fix for a bug in the visicon with overlapping visual items when clear t not given to proc-display. ------------------------------------------------------------------------ r633 | db30 | 2008-07-14 08:07:52 -0400 (Mon, 14 Jul 2008) | 1 line Changed paths: M /actr6/framework/buffers.lisp Made the schedule-overwrite only print the requested value when it's nil like set-buffer-chunk does. ------------------------------------------------------------------------ r632 | db30 | 2008-07-13 13:12:32 -0400 (Sun, 13 Jul 2008) | 1 line Changed paths: M /actr6/framework/buffers.lisp Fixed the return value for overwrite-buffer-chunk and added a requested keyword to it. ------------------------------------------------------------------------ r631 | db30 | 2008-07-12 12:41:23 -0400 (Sat, 12 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/docs/reference-manual.doc Added a new declarative parameter :w-hook to let people override the default Wkj calculation. ------------------------------------------------------------------------ r630 | db30 | 2008-07-12 11:46:15 -0400 (Sat, 12 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/test-models/grouped.ref M /actr6/tutorial/unit5/unit5.doc Modified the text in the activation trace to hopefully be clearer with similarities. ------------------------------------------------------------------------ r629 | db30 | 2008-07-12 11:02:26 -0400 (Sat, 12 Jul 2008) | 1 line Changed paths: M /actr6/test-models/solution-tests.zip M /actr6/tutorial/unit5/siegler.lisp M /actr6/tutorial/unit5/unit5_exp.doc Minor update to the code in the siegler model for consistency. ------------------------------------------------------------------------ r628 | db30 | 2008-07-12 10:23:25 -0400 (Sat, 12 Jul 2008) | 1 line Changed paths: M /actr6/devices/acl/device.lisp Minor update for the ACL device to address a possible issue in ACL 8+. ------------------------------------------------------------------------ r627 | db30 | 2008-07-09 10:32:43 -0400 (Wed, 09 Jul 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Patched p and p* so they don't throw an error for syntax issues in some LHS tests. ------------------------------------------------------------------------ r626 | db30 | 2008-07-08 09:12:29 -0400 (Tue, 08 Jul 2008) | 1 line Changed paths: M /actr6/extras/emma.lisp Started to fix emma to work with the updated vision module. ------------------------------------------------------------------------ r625 | db30 | 2008-07-07 12:56:43 -0400 (Mon, 07 Jul 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/devices/virtual/device.lisp M /actr6/devices/virtual/uwi.lisp M /actr6/test-models/tracking-test.ref Big update to vision and the virtual device to delete all the temporary chunks used. ------------------------------------------------------------------------ r624 | db30 | 2008-07-03 09:33:53 -0400 (Thu, 03 Jul 2008) | 1 line Changed paths: M /actr6/tutorial/unit3/unit3.doc Added the reference for the Sperling experiment. ------------------------------------------------------------------------ r623 | db30 | 2008-07-01 08:45:52 -0400 (Tue, 01 Jul 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Committed a bad chunks file last time. ------------------------------------------------------------------------ r622 | db30 | 2008-07-01 08:42:51 -0400 (Tue, 01 Jul 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunks.lisp Added a purge-chunk command which combines delete-chunk and release-name for convenience. ------------------------------------------------------------------------ r621 | db30 | 2008-06-20 09:30:13 -0400 (Fri, 20 Jun 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc M /actr6/framework/chunk-spec.lisp Updated some of the chunk-spec code to make it more 'user friendly' and that forced some module code to be updated too. ------------------------------------------------------------------------ r620 | db30 | 2008-06-19 07:16:58 -0400 (Thu, 19 Jun 2008) | 1 line Changed paths: M /actr6/extras/WNLexicalModule/Models/wnl-find-all-definitions.lisp M /actr6/extras/WNLexicalModule/Models/wnl-find-definition.lisp A /actr6/extras/WNLexicalModule/Models/wnl-find-synonyms.lisp D /actr6/extras/WNLexicalModule/WNLexical_3-0-1.lisp A /actr6/extras/WNLexicalModule/WNLexical_3-0-2.lisp Updated the WNLexical files in extras. ------------------------------------------------------------------------ r619 | db30 | 2008-06-16 12:44:06 -0400 (Mon, 16 Jun 2008) | 1 line Changed paths: M /actr6/framework/chunk-spec.lisp Changed test-chunk-slots to better reject 'bad' chunk-specs. ------------------------------------------------------------------------ r618 | db30 | 2008-06-12 08:07:13 -0400 (Thu, 12 Jun 2008) | 1 line Changed paths: M /actr6/test-models/sperling.lisp Changed a variable name in the sperling test model to avoid an issue with LispWorks. ------------------------------------------------------------------------ r617 | db30 | 2008-06-11 08:42:01 -0400 (Wed, 11 Jun 2008) | 1 line Changed paths: M /actr6/core-modules/motor.lisp M /actr6/docs/reference-manual.doc Adjusted the noisy-loc? method a little to be closer to the 4% miss rate in the docs (still a crude approximation to the 'real' noise). ------------------------------------------------------------------------ r616 | db30 | 2008-06-10 11:04:31 -0400 (Tue, 10 Jun 2008) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Fixed a bug in the last update and added code to try to determine the fasl names automatically using compile-file-pathname. ------------------------------------------------------------------------ r615 | db30 | 2008-06-09 14:08:30 -0400 (Mon, 09 Jun 2008) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Added an entry for *.fasl-pathname* to cover LispWorks 5.x under Unix/Linux. ------------------------------------------------------------------------ r614 | db30 | 2008-06-06 08:28:30 -0400 (Fri, 06 Jun 2008) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Added an after method for clear so that the audio error states get cleared. ------------------------------------------------------------------------ r613 | db30 | 2008-06-03 11:20:33 -0400 (Tue, 03 Jun 2008) | 1 line Changed paths: M /actr6/test-models/fan.lisp M /actr6/test-models/fan.ref M /actr6/test-models/paired-learning.lisp M /actr6/test-models/paired-learning.ref Updated test models to produce the info used in the tutorial texts. ------------------------------------------------------------------------ r612 | db30 | 2008-06-03 11:19:18 -0400 (Tue, 03 Jun 2008) | 1 line Changed paths: M /actr6/tutorial/unit5/unit5.doc M /actr6/tutorial/unit5/unit5_exp.doc M /actr6/tutorial/unit6/unit6.doc M /actr6/tutorial/unit6/unit6_exp.doc M /actr6/tutorial/unit7/unit7.doc M /actr6/tutorial/unit7/unit7_exp.doc Minor updates for units 5-7. ------------------------------------------------------------------------ r611 | db30 | 2008-05-29 14:20:49 -0400 (Thu, 29 May 2008) | 1 line Changed paths: M /actr6/test-models/paired.lisp M /actr6/test-models/paired.ref M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit4/unit4_exp.doc Minor unit 4 updates. ------------------------------------------------------------------------ r610 | db30 | 2008-05-29 10:58:16 -0400 (Thu, 29 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/test-models/sperling.lisp M /actr6/test-models/sperling.ref M /actr6/tutorial/unit3/unit3.doc M /actr6/tutorial/unit3/unit3_exp.doc Minor updates to the unit 3 materials. ------------------------------------------------------------------------ r609 | db30 | 2008-05-28 14:07:55 -0400 (Wed, 28 May 2008) | 1 line Changed paths: M /actr6/tutorial/unit2/unit2.doc M /actr6/tutorial/unit2/unit2_exp.doc Unit 2 edits. ------------------------------------------------------------------------ r608 | db30 | 2008-05-28 12:52:00 -0400 (Wed, 28 May 2008) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc M /actr6/tutorial/unit1/unit1_exp.doc Minor edits of the unit 1 texts. ------------------------------------------------------------------------ r607 | db30 | 2008-05-28 12:51:00 -0400 (Wed, 28 May 2008) | 1 line Changed paths: M /actr6/environment/GUI/starter.tcl Added !#wish to the top of starter.tcl to maybe make it easier for Unix/Linux use. ------------------------------------------------------------------------ r606 | db30 | 2008-05-22 11:50:10 -0400 (Thu, 22 May 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Added some code to catch and warn when an assign-finst request got a bad chunk. ------------------------------------------------------------------------ r605 | db30 | 2008-05-16 17:15:50 -0400 (Fri, 16 May 2008) | 12 lines Changed paths: M /actr6/docs/reference-manual.doc A /actr6/environment/GUI/dialogs/76-ptrace-button.tcx Added a crude test of a new environment viewer. If you enable the button (change it from .tcx to .tcl) then you'll get the production selection trace. It runs with the model and for each conflict-resolution event it adds a column to the display with a red box for the production which was selected and a green box for the ones that matched but weren't selected (the conflict set). If no productions matched then no new column gets added. ------------------------------------------------------------------------ r604 | db30 | 2008-05-16 17:09:39 -0400 (Fri, 16 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/environment/env-module.lisp M /actr6/environment/handlers.lisp M /actr6/environment/server.lisp Updates to the environment connection to allow for conflict hook code which always returns nil. ------------------------------------------------------------------------ r603 | db30 | 2008-05-12 16:57:34 -0400 (Mon, 12 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Updates to the manual (mostly formatting and updates to the examples). ------------------------------------------------------------------------ r602 | db30 | 2008-05-12 16:54:44 -0400 (Mon, 12 May 2008) | 1 line Changed paths: M /actr6/framework/meta-process.lisp Fixed a bug in delete-meta-process-fct. ------------------------------------------------------------------------ r601 | db30 | 2008-05-02 15:38:24 -0400 (Fri, 02 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/buffers.lisp M /actr6/framework/scheduling.lisp Added a new option to run-step (b) to print the buffer contents. ------------------------------------------------------------------------ r600 | db30 | 2008-05-02 11:55:48 -0400 (Fri, 02 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/misc-utils.lisp Fixed a bug in suppress-warnings that may have changed the model's :model-warnings setting. ------------------------------------------------------------------------ r599 | db30 | 2008-05-01 14:41:44 -0400 (Thu, 01 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunk-types.lisp Added a second return value to chunk-type-slot-names-fct to indicate whether the name was valid. ------------------------------------------------------------------------ r598 | db30 | 2008-05-01 12:58:49 -0400 (Thu, 01 May 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/chunk-types.lisp Fixed a typo in a warning message for the chunk-type command. ------------------------------------------------------------------------ r597 | db30 | 2008-04-29 16:26:14 -0400 (Tue, 29 Apr 2008) | 1 line Changed paths: M /actr6/other-files/bold.lisp Changed the default values for the exponent and scale of the BOLD calculation. ------------------------------------------------------------------------ r596 | db30 | 2008-04-24 15:31:43 -0400 (Thu, 24 Apr 2008) | 1 line Changed paths: M /actr6/test-models/bst-learn.ref M /actr6/test-models/bst-nolearn.ref M /actr6/test-models/tracking-test.ref Updated some of the reference models because the visual-location names are different now that the virtual device reuses chunks. ------------------------------------------------------------------------ r595 | db30 | 2008-04-24 12:56:07 -0400 (Thu, 24 Apr 2008) | 1 line Changed paths: M /actr6/extras/emma.lisp Updated the EMMA module to match up with the recent changes to the vision module. ------------------------------------------------------------------------ r594 | db30 | 2008-04-23 16:29:24 -0400 (Wed, 23 Apr 2008) | 1 line Changed paths: D /actr6/extras/bold-prediction Removed the bold-prediction directory from extras. ------------------------------------------------------------------------ r593 | db30 | 2008-04-23 16:26:56 -0400 (Wed, 23 Apr 2008) | 1 line Changed paths: A /actr6/docs/bold-tools-readme.txt (from /actr6/extras/bold-prediction/readme.txt:585) D /actr6/environment/GUI/dialogs/23-ctrl-panel-stop-button.tcl A /actr6/environment/GUI/dialogs/23-ctrl-panel-stop-button.tcx (from /actr6/environment/GUI/dialogs/23-ctrl-panel-stop-button.tcl:585) A /actr6/environment/GUI/dialogs/80-ctrl-panel-bold-label.tcl (from /actr6/extras/bold-prediction/80-ctrl-panel-bold-label.tcl:585) A /actr6/environment/GUI/dialogs/81-bold-browser.tcl (from /actr6/extras/bold-prediction/81-bold-browser.tcl:585) A /actr6/environment/GUI/dialogs/82-bold-brain.tcl (from /actr6/extras/bold-prediction/82-bold-brain.tcl:585) A /actr6/environment/GUI/dialogs/83-bold-brain-3d.tcl (from /actr6/extras/bold-prediction/83-bold-brain-3d.tcl:585) A /actr6/environment/GUI/dialogs/84-bold-brain-3d-real-time.tcl (from /actr6/extras/bold-prediction/84-bold-brain-3d-real-time.tcl:585) A /actr6/environment/GUI/dialogs/ref-brain.gif (from /actr6/extras/bold-prediction/ref-brain.gif:585) M /actr6/environment/GUI/init/02-configurations.tcl D /actr6/extras/bold-prediction/80-ctrl-panel-bold-label.tcl D /actr6/extras/bold-prediction/81-bold-browser.tcl D /actr6/extras/bold-prediction/82-bold-brain.tcl D /actr6/extras/bold-prediction/83-bold-brain-3d.tcl D /actr6/extras/bold-prediction/84-bold-brain-3d-real-time.tcl D /actr6/extras/bold-prediction/readme.txt D /actr6/extras/bold-prediction/ref-brain.gif Moved the BOLD viewer tools onto the environment's control panel by default now and removed the stop button (which didn't really do much). ------------------------------------------------------------------------ r592 | db30 | 2008-04-17 14:35:02 -0400 (Thu, 17 Apr 2008) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/72-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/73-ctrl-panel-gt-vert-button.tcl Graphic trace tools now have default 'notes' based on the text in the boxes, but an explicit add-buffer-trace-notes will supercede the default. ------------------------------------------------------------------------ r591 | db30 | 2008-04-17 13:52:00 -0400 (Thu, 17 Apr 2008) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Performance improvement for new-name and new-symbol commands. ------------------------------------------------------------------------ r590 | db30 | 2008-04-16 13:12:02 -0400 (Wed, 16 Apr 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor speed imporvements in normalize-chunk-names. ------------------------------------------------------------------------ r589 | db30 | 2008-04-15 16:24:30 -0400 (Tue, 15 Apr 2008) | 1 line Changed paths: M /actr6/devices/virtual/device.lisp Took some 'the fixnum' declarations out of the code since nothing forces the mouse position to be fixnums and that can lead to problems. ------------------------------------------------------------------------ r588 | db30 | 2008-04-15 14:08:45 -0400 (Tue, 15 Apr 2008) | 1 line Changed paths: M /actr6/devices/virtual/device.lisp Changed virtual lines so that they can't be clicked on - basically fixed a bug which has been there for a while. ------------------------------------------------------------------------ r587 | db30 | 2008-04-15 13:59:30 -0400 (Tue, 15 Apr 2008) | 1 line Changed paths: M /actr6/framework/chunks.lisp Significant performance improvement to delete-chunk-fct. ------------------------------------------------------------------------ r586 | db30 | 2008-04-15 13:50:22 -0400 (Tue, 15 Apr 2008) | 1 line Changed paths: M /actr6/devices/virtual/device.lisp Changed the build-vis-locs-for methods of the virtual device to return the same chunk across proc-display calls when possible. ------------------------------------------------------------------------ r585 | db30 | 2008-04-11 15:45:17 -0400 (Fri, 11 Apr 2008) | 9 lines Changed paths: M /actr6/devices/virtual/device.lisp M /actr6/framework/device-interface.lisp Added another new parameter :stable-loc-names which determines whether the subviews of a virtual window get sorted. The default is t, but setting it to nil should improve the run time of models that use virtual windows and shouldn't affect the results (other than the names of the visual-locations). May colapse all the visual performance parameters into one switch once they're all tested and sorted out... ------------------------------------------------------------------------ r584 | db30 | 2008-04-10 16:45:54 -0400 (Thu, 10 Apr 2008) | 18 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Added a new parameter to the vision module - :test-feats This can allow for some significant improvements in run time for proc-display calls for displays with many items if it is set to nil (the default value is t). However, there are only two situations where one can safely set it to nil and not cause issues for the vision module: - If all proc-display calls specify :clear t - If each visual item in the device returns the "same" chunk from build-vis-locs-for every time (by same it means same name even though the contents may differ) Currently, the default devices do not satisfy the second constraint. So, this should only be set to nil if you always use ":clear t" or you've got a custom device which satisfies the "same chunk name" constraint. ------------------------------------------------------------------------ r583 | db30 | 2008-04-08 16:15:28 -0400 (Tue, 08 Apr 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp The vision module now flags the chunks from a re-encoding as unrequested. ------------------------------------------------------------------------ r582 | db30 | 2008-04-08 13:04:30 -0400 (Tue, 08 Apr 2008) | 1 line Changed paths: M /actr6/test-models/sperling.lisp M /actr6/tutorial/unit3/sperling.lisp M /actr6/tutorial/unit3/unit3.doc Removed some old parts of the unit 3 model which haven't been needed for quite a while. ------------------------------------------------------------------------ r581 | db30 | 2008-04-08 10:00:07 -0400 (Tue, 08 Apr 2008) | 1 line Changed paths: M /actr6/environment/server.lisp Updated the environment code to use uni-without-interrupts. ------------------------------------------------------------------------ r580 | db30 | 2008-04-08 09:51:44 -0400 (Tue, 08 Apr 2008) | 1 line Changed paths: M /actr6/support/uni-files.lisp Added a uni-without-interrupts because without-interrupts isn't an ANSI CL command. ------------------------------------------------------------------------ r579 | db30 | 2008-04-07 14:27:39 -0400 (Mon, 07 Apr 2008) | 23 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Added a new parameter to the vision module - :auto-attend. When it is set to t (defaults to nil) it will cause the vision module to automatically start a move-attention after a successful visual-location request completes to attend to that visual-location. Basically, it's a modeling shortcut for simple situations where the result of the visual-location request aren't that important and the model is just going to attend it anyway. Saves some productions in the model but doesn't affect the timing because the request is delayed 50ms to compensate for the skipped production. The module is not marked as busy during the 50ms delay. So one should be careful about using explicit move-attention requests when this parameter is enabled. The assumption is that one won't be using explicit requests if this option is turned on. One other note is that if this is enabled when production compilation is also turned on you may what to put both a visual-location and visual buffer check in the production which harvests the automatically attended visual object. Otherwise, compilation could combine the production which makes the visual- location request with the one that harvests the automatically attended visual object and that's probably not a "good" production most of the time. ------------------------------------------------------------------------ r578 | db30 | 2008-04-07 11:50:27 -0400 (Mon, 07 Apr 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Added an automatic check of the visicon for buffer stuffing after a set-visloc-default request. ------------------------------------------------------------------------ r577 | db30 | 2008-04-01 14:33:37 -0400 (Tue, 01 Apr 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Performance improvement for proc-display - it was unnecessarily sorting the visicon. ------------------------------------------------------------------------ r576 | db30 | 2008-03-28 15:02:35 -0400 (Fri, 28 Mar 2008) | 20 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp There is now a new command available for use in productions: !mv-bind!. It can occur on either the LHS or the RHS. It works like !bind! except that it binds multiple values to the results of a single function call. The variables to be bound must be in a list. Here is a demo production showing its syntax: (p test1 =goal> isa goal case =case slot1 =b !mv-bind! (=a =b) (demo-function =case) ==> !mv-bind! (=c =d) (values =a 2) !output! (Got =a and =b as results and =c =d from the RHS) ) Its use in a production will block production compilation and there is no corresponding 'safe' version. ------------------------------------------------------------------------ r575 | db30 | 2008-03-27 16:36:43 -0400 (Thu, 27 Mar 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Fixed a serious bug in production parsing that was introduced in 574. ------------------------------------------------------------------------ r574 | db30 | 2008-03-24 16:24:27 -0400 (Mon, 24 Mar 2008) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp M /actr6/modules/production-compilation.lisp Starting the work to add the !mv-bind! command into productions. ------------------------------------------------------------------------ r573 | db30 | 2008-03-24 10:51:29 -0400 (Mon, 24 Mar 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Cleaned up some of the to-do and bug info (no code changes). ------------------------------------------------------------------------ r572 | db30 | 2008-03-21 16:29:51 -0400 (Fri, 21 Mar 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed a bug which could lead to incorrect pruning of duplicate visicon items when text items overlapped exactly - same on all features except value. ------------------------------------------------------------------------ r571 | db30 | 2008-03-21 11:40:13 -0400 (Fri, 21 Mar 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed a bug with querying the attended status of a feature that's no longer in the visicon. ------------------------------------------------------------------------ r570 | db30 | 2008-03-13 14:57:44 -0400 (Thu, 13 Mar 2008) | 1 line Changed paths: M /actr6/core-modules/motor.lisp M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc Adjusted the priority on the set-visloc-default requests to avoid a proc-display sneaking in. Also added a to-do to the motor module (no code change there). ------------------------------------------------------------------------ r569 | db30 | 2008-02-28 09:44:46 -0500 (Thu, 28 Feb 2008) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Update to suppress-warnings so it works right in SBCL. ------------------------------------------------------------------------ r568 | db30 | 2008-02-27 20:42:28 -0500 (Wed, 27 Feb 2008) | 1 line Changed paths: M /actr6/devices/lw/device.lisp Fixed a bug in the build-vis-locs-for method on the capi:simple-pane class. ------------------------------------------------------------------------ r567 | db30 | 2008-02-27 20:39:12 -0500 (Wed, 27 Feb 2008) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Changed the test on DM parameter changes to only warn when a 'critical' parameter gets changed. ------------------------------------------------------------------------ r566 | db30 | 2008-02-26 16:35:06 -0500 (Tue, 26 Feb 2008) | 1 line Changed paths: M /actr6/modules/utility-and-reward-1.lisp Fixed a bug that allowed utility learning to progress even when :esc was set to nil. ------------------------------------------------------------------------ r565 | db30 | 2008-02-18 10:42:52 -0500 (Mon, 18 Feb 2008) | 1 line Changed paths: M /actr6/examples/act-r-6-solutions.zip M /actr6/test-models/solution-tests.zip M /actr6/tutorial/unit5/siegler.lisp Minor adjustment of the siegler model's experiment code. ------------------------------------------------------------------------ r564 | db30 | 2008-02-15 12:05:51 -0500 (Fri, 15 Feb 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added a remove-finst function since update-cursor-feat ------------------------------------------------------------------------ r563 | db30 | 2008-02-14 17:00:25 -0500 (Thu, 14 Feb 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed an issue with the testing of the value slot for text items in a visual-location request. ------------------------------------------------------------------------ r562 | db30 | 2008-02-14 15:07:24 -0500 (Thu, 14 Feb 2008) | 13 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/docs/reference-manual.doc A /actr6/examples/set-visloc-default-request.lisp Added a new request for the visual-location buffer - set-visloc-default. It is essentially the same as calling the command with the same name. So, now changing the specification used for buffer stuffing on screen changes is controllable by the model without needing a !eval!. A model showing some example usage is included in the examples directory. The reference manual has been updated to include that new request as well as updating the visual-location request with a description of the new module's version. Also reapplied the bug fix that occurred in r523 because it got undone sometime since then. ------------------------------------------------------------------------ r561 | db30 | 2008-02-04 13:27:56 -0500 (Mon, 04 Feb 2008) | 1 line Changed paths: M /actr6/support/general-pm.lisp Adjustment to preparation-complete to fix a potential issue with the processor state being set free after a prepare action. ------------------------------------------------------------------------ r560 | db30 | 2008-02-04 10:03:41 -0500 (Mon, 04 Feb 2008) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/misc-utils.lisp Added a suppress-warnings command which works like no-output to prevent the printing of warnings. ------------------------------------------------------------------------ r559 | db30 | 2008-01-31 15:34:08 -0500 (Thu, 31 Jan 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added the add-screen-object and delete-screen-object commands to the new vision module. ------------------------------------------------------------------------ r558 | db30 | 2008-01-16 12:33:00 -0500 (Wed, 16 Jan 2008) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed a bug in vision when attention shifted to a vis-loc chunk which hadn't been created by the vision module. ------------------------------------------------------------------------ r557 | db30 | 2008-01-16 12:31:58 -0500 (Wed, 16 Jan 2008) | 1 line Changed paths: M /actr6/environment/server.lisp Another minor fix for issues with SBCL and the environment. ------------------------------------------------------------------------ r556 | db30 | 2008-01-14 16:27:16 -0500 (Mon, 14 Jan 2008) | 1 line Changed paths: D /actr6/extras/new-vision Removing new-vision itself - since the last time I only got the subdirectories. ------------------------------------------------------------------------ r555 | db30 | 2008-01-14 16:26:15 -0500 (Mon, 14 Jan 2008) | 1 line Changed paths: D /actr6/extras/new-vision/core-modules D /actr6/extras/new-vision/devices D /actr6/extras/new-vision/examples D /actr6/extras/new-vision/framework D /actr6/extras/new-vision/test-models D /actr6/extras/new-vision/tutorial Removing the new-vision tree from extras. ------------------------------------------------------------------------ r554 | db30 | 2008-01-14 14:54:00 -0500 (Mon, 14 Jan 2008) | 9 lines Changed paths: R /actr6/core-modules/motor.lisp (from /actr6/extras/new-vision/core-modules/motor.lisp:544) R /actr6/core-modules/vision.lisp (from /actr6/extras/new-vision/core-modules/vision.lisp:545) R /actr6/devices/acl/device.lisp (from /actr6/extras/new-vision/devices/acl/device.lisp:544) R /actr6/devices/acl/uwi.lisp (from /actr6/extras/new-vision/devices/acl/uwi.lisp:544) R /actr6/devices/lw/device.lisp (from /actr6/extras/new-vision/devices/lw/device.lisp:544) R /actr6/devices/mcl/device.lisp (from /actr6/extras/new-vision/devices/mcl/device.lisp:544) R /actr6/devices/virtual/device.lisp (from /actr6/extras/new-vision/devices/virtual/device.lisp:545) A /actr6/examples/new-vision-test-2.lisp (from /actr6/extras/new-vision/examples/new-vision-test-2.lisp:544) A /actr6/examples/new-vision-test-3.lisp (from /actr6/extras/new-vision/examples/new-vision-test-3.lisp:544) A /actr6/examples/new-vision-test.lisp (from /actr6/extras/new-vision/examples/new-vision-test.lisp:544) A /actr6/examples/simple-new-device.lisp (from /actr6/extras/new-vision/examples/simple-new-device.lisp:544) A /actr6/examples/visual-tracking-example.lisp (from /actr6/extras/new-vision/examples/visual-tracking-example.lisp:544) R /actr6/extras/emma.lisp (from /actr6/extras/new-vision/emma.lisp:544) D /actr6/extras/new-vision/core-modules/motor.lisp D /actr6/extras/new-vision/core-modules/vision.lisp D /actr6/extras/new-vision/devices/acl/device.lisp D /actr6/extras/new-vision/devices/acl/uwi.lisp D /actr6/extras/new-vision/devices/lw/device.lisp D /actr6/extras/new-vision/devices/mcl/device.lisp D /actr6/extras/new-vision/devices/virtual/device.lisp D /actr6/extras/new-vision/emma.lisp D /actr6/extras/new-vision/examples/new-vision-test-2.lisp D /actr6/extras/new-vision/examples/new-vision-test-3.lisp D /actr6/extras/new-vision/examples/new-vision-test.lisp D /actr6/extras/new-vision/examples/simple-new-device.lisp D /actr6/extras/new-vision/examples/visual-tracking-example.lisp D /actr6/extras/new-vision/framework/device-interface.lisp D /actr6/extras/new-vision/readme.txt D /actr6/extras/new-vision/test-models/addition.ref D /actr6/extras/new-vision/test-models/bst-learn.ref D /actr6/extras/new-vision/test-models/bst-nolearn.ref D /actr6/extras/new-vision/test-models/count.ref D /actr6/extras/new-vision/test-models/demo2.ref D /actr6/extras/new-vision/test-models/fan.ref D /actr6/extras/new-vision/test-models/grouped.ref D /actr6/extras/new-vision/test-models/paired-learning-pstar.ref D /actr6/extras/new-vision/test-models/paired-learning.ref D /actr6/extras/new-vision/test-models/paired.ref D /actr6/extras/new-vision/test-models/semantic.ref D /actr6/extras/new-vision/test-models/solution-tests.zip D /actr6/extras/new-vision/test-models/sperling.ref D /actr6/extras/new-vision/test-models/tracking-test.ref D /actr6/extras/new-vision/test-models/tutor-model-solution.ref D /actr6/extras/new-vision/tutorial/unit2/unit2.doc D /actr6/extras/new-vision/tutorial/unit3/unit3.doc D /actr6/extras/new-vision/tutorial/unit3/unit3_exp.doc D /actr6/extras/new-vision/tutorial/unit4/unit4.doc D /actr6/extras/new-vision/tutorial/unit5/unit5.doc R /actr6/framework/device-interface.lisp (from /actr6/extras/new-vision/framework/device-interface.lisp:544) M /actr6/framework/version-string.lisp R /actr6/test-models/addition.ref (from /actr6/extras/new-vision/test-models/addition.ref:544) R /actr6/test-models/bst-learn.ref (from /actr6/extras/new-vision/test-models/bst-learn.ref:545) R /actr6/test-models/bst-nolearn.ref (from /actr6/extras/new-vision/test-models/bst-nolearn.ref:545) R /actr6/test-models/count.ref (from /actr6/extras/new-vision/test-models/count.ref:544) R /actr6/test-models/demo2.ref (from /actr6/extras/new-vision/test-models/demo2.ref:544) R /actr6/test-models/fan.ref (from /actr6/extras/new-vision/test-models/fan.ref:545) R /actr6/test-models/grouped.ref (from /actr6/extras/new-vision/test-models/grouped.ref:544) R /actr6/test-models/paired-learning-pstar.ref (from /actr6/extras/new-vision/test-models/paired-learning-pstar.ref:545) R /actr6/test-models/paired-learning.ref (from /actr6/extras/new-vision/test-models/paired-learning.ref:545) R /actr6/test-models/paired.ref (from /actr6/extras/new-vision/test-models/paired.ref:553) R /actr6/test-models/semantic.ref (from /actr6/extras/new-vision/test-models/semantic.ref:544) R /actr6/test-models/solution-tests.zip (from /actr6/extras/new-vision/test-models/solution-tests.zip:550) R /actr6/test-models/sperling.ref (from /actr6/extras/new-vision/test-models/sperling.ref:545) R /actr6/test-models/tracking-test.ref (from /actr6/extras/new-vision/test-models/tracking-test.ref:544) R /actr6/test-models/tutor-model-solution.ref (from /actr6/extras/new-vision/test-models/tutor-model-solution.ref:544) R /actr6/tutorial/unit2/unit2.doc (from /actr6/extras/new-vision/tutorial/unit2/unit2.doc:547) R /actr6/tutorial/unit3/unit3.doc (from /actr6/extras/new-vision/tutorial/unit3/unit3.doc:549) R /actr6/tutorial/unit3/unit3_exp.doc (from /actr6/extras/new-vision/tutorial/unit3/unit3_exp.doc:549) R /actr6/tutorial/unit4/unit4.doc (from /actr6/extras/new-vision/tutorial/unit4/unit4.doc:553) R /actr6/tutorial/unit5/unit5.doc (from /actr6/extras/new-vision/tutorial/unit5/unit5.doc:551) *********************************************** Moved all of the new-vision files into place. The new version of the vision module (the one that uses chunks internally) is now the default. ************************************************ ------------------------------------------------------------------------ r553 | db30 | 2008-01-14 12:25:51 -0500 (Mon, 14 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/test-models/paired.ref M /actr6/extras/new-vision/tutorial/unit4/unit4.doc M /actr6/test-models/paired.lisp M /actr6/tutorial/unit4/paired.lisp M /actr6/tutorial/unit7/paired-learning.lisp M /actr6/tutorial/unit7/unit7.doc M /actr6/tutorial/unit7/unit7_exp.doc Update to the unit 7 texts and some changes to the unit 4 model which is used in the unit 7 examples. ------------------------------------------------------------------------ r552 | db30 | 2008-01-14 10:07:34 -0500 (Mon, 14 Jan 2008) | 1 line Changed paths: M /actr6/tutorial/unit6/unit6.doc M /actr6/tutorial/unit6/unit6_exp.doc Minor edits for the unit 6 docs. ------------------------------------------------------------------------ r551 | db30 | 2008-01-14 08:52:58 -0500 (Mon, 14 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/tutorial/unit5/unit5.doc M /actr6/tutorial/unit5/unit5_exp.doc Update of the unit 5 tutorial docs. ------------------------------------------------------------------------ r550 | db30 | 2008-01-11 12:29:56 -0500 (Fri, 11 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/test-models/paired.ref M /actr6/extras/new-vision/test-models/solution-tests.zip M /actr6/extras/new-vision/tutorial/unit4/unit4.doc M /actr6/test-models/paired.lisp M /actr6/test-models/paired.ref M /actr6/test-models/solution-tests.zip M /actr6/tutorial/unit4/paired.lisp M /actr6/tutorial/unit4/unit4_exp.doc M /actr6/tutorial/unit4/zbrodoff.lisp Updating the unit 4 materials (both models now have a '+visual> isa clear' to make the trial to trial transitions cleaner - like the old -visual> calls in ACT-R 5). ------------------------------------------------------------------------ r549 | db30 | 2008-01-10 14:18:16 -0500 (Thu, 10 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/tutorial/unit3/unit3.doc M /actr6/extras/new-vision/tutorial/unit3/unit3_exp.doc Updates to the unit 3 texts. ------------------------------------------------------------------------ r548 | db30 | 2008-01-10 12:54:45 -0500 (Thu, 10 Jan 2008) | 1 line Changed paths: M /actr6/tutorial/unit2/unit2_exp.doc Edits to the unit2 experiment text. ------------------------------------------------------------------------ r547 | db30 | 2008-01-10 12:36:32 -0500 (Thu, 10 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/tutorial/unit2/unit2.doc Edits to the unit2 text. ------------------------------------------------------------------------ r546 | db30 | 2008-01-09 13:40:58 -0500 (Wed, 09 Jan 2008) | 1 line Changed paths: M /actr6/tutorial/unit1/count.lisp M /actr6/tutorial/unit1/unit1.doc M /actr6/tutorial/unit1/unit1_exp.doc Minor edits of the unit1 materials. ------------------------------------------------------------------------ r545 | db30 | 2008-01-09 11:18:31 -0500 (Wed, 09 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp M /actr6/extras/new-vision/devices/virtual/device.lisp M /actr6/extras/new-vision/test-models/bst-learn.ref M /actr6/extras/new-vision/test-models/bst-nolearn.ref M /actr6/extras/new-vision/test-models/fan.ref M /actr6/extras/new-vision/test-models/paired-learning-pstar.ref M /actr6/extras/new-vision/test-models/paired-learning.ref M /actr6/extras/new-vision/test-models/paired.ref M /actr6/extras/new-vision/test-models/solution-tests.zip M /actr6/extras/new-vision/test-models/sperling.ref Updates to new vision module to improve detrerminism in testing and a new set of reference runs. ------------------------------------------------------------------------ r544 | db30 | 2008-01-08 14:22:59 -0500 (Tue, 08 Jan 2008) | 1 line Changed paths: M /actr6/support/uni-files.lisp Another minor fix for uni-files under SBCL. ------------------------------------------------------------------------ r543 | db30 | 2008-01-07 13:54:49 -0500 (Mon, 07 Jan 2008) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Fix for potential bug when visual-location chunks get merged into DM. ------------------------------------------------------------------------ r542 | db30 | 2008-01-04 14:22:46 -0500 (Fri, 04 Jan 2008) | 1 line Changed paths: M /actr6/support/uni-files.lisp Fixed a bug(?) that was causing things to break during compilation under SBCL 1.0.12 for Linux. ------------------------------------------------------------------------ r541 | db30 | 2008-01-03 08:32:14 -0500 (Thu, 03 Jan 2008) | 5 lines Changed paths: A /actr6/extras/old-vision A /actr6/extras/old-vision/core-modules A /actr6/extras/old-vision/core-modules/motor.lisp A /actr6/extras/old-vision/core-modules/vision.lisp A /actr6/extras/old-vision/devices A /actr6/extras/old-vision/devices/acl A /actr6/extras/old-vision/devices/acl/device.lisp A /actr6/extras/old-vision/devices/acl/uwi.lisp A /actr6/extras/old-vision/devices/lw A /actr6/extras/old-vision/devices/lw/device.lisp A /actr6/extras/old-vision/devices/mcl A /actr6/extras/old-vision/devices/mcl/device.lisp A /actr6/extras/old-vision/devices/virtual A /actr6/extras/old-vision/devices/virtual/device.lisp A /actr6/extras/old-vision/emma.lisp A /actr6/extras/old-vision/examples A /actr6/extras/old-vision/examples/act-r-6-solutions.zip A /actr6/extras/old-vision/framework A /actr6/extras/old-vision/framework/device-interface.lisp A /actr6/extras/old-vision/readme.txt A /actr6/extras/old-vision/test-models A /actr6/extras/old-vision/test-models/addition.ref A /actr6/extras/old-vision/test-models/bst-learn.ref A /actr6/extras/old-vision/test-models/bst-nolearn.ref A /actr6/extras/old-vision/test-models/count.ref A /actr6/extras/old-vision/test-models/demo2.ref A /actr6/extras/old-vision/test-models/fan.ref A /actr6/extras/old-vision/test-models/grouped.ref A /actr6/extras/old-vision/test-models/paired-learning-pstar.ref A /actr6/extras/old-vision/test-models/paired-learning.ref A /actr6/extras/old-vision/test-models/paired.ref A /actr6/extras/old-vision/test-models/semantic.ref A /actr6/extras/old-vision/test-models/solution-tests.zip A /actr6/extras/old-vision/test-models/sperling.ref A /actr6/extras/old-vision/test-models/tracking-test.ref A /actr6/extras/old-vision/test-models/tutor-model-solution.ref A /actr6/extras/old-vision/tutorial A /actr6/extras/old-vision/tutorial/unit2 A /actr6/extras/old-vision/tutorial/unit2/unit2.doc A /actr6/extras/old-vision/tutorial/unit3 A /actr6/extras/old-vision/tutorial/unit3/unit3.doc A /actr6/extras/old-vision/tutorial/unit3/unit3_exp.doc A /actr6/extras/old-vision/tutorial/unit4 A /actr6/extras/old-vision/tutorial/unit4/unit4.doc A /actr6/extras/old-vision/tutorial/unit5 A /actr6/extras/old-vision/tutorial/unit5/unit5.doc Adding an old-vision directory to the extras directory. The old-vision directory holds the last released version of the files that will be replaced when the new vision module becomes the default version. ------------------------------------------------------------------------ r540 | db30 | 2007-12-21 13:37:24 -0500 (Fri, 21 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Fixed a bug with find-locations that have a ':nearest current' constraint when there isn't a currently attended location. ------------------------------------------------------------------------ r539 | db30 | 2007-12-21 11:33:12 -0500 (Fri, 21 Dec 2007) | 1 line Changed paths: A /actr6/extras/new-vision/test-models A /actr6/extras/new-vision/test-models/addition.ref A /actr6/extras/new-vision/test-models/bst-learn.ref A /actr6/extras/new-vision/test-models/bst-nolearn.ref A /actr6/extras/new-vision/test-models/count.ref A /actr6/extras/new-vision/test-models/demo2.ref A /actr6/extras/new-vision/test-models/fan.ref A /actr6/extras/new-vision/test-models/grouped.ref A /actr6/extras/new-vision/test-models/paired-learning-pstar.ref A /actr6/extras/new-vision/test-models/paired-learning.ref A /actr6/extras/new-vision/test-models/paired.ref A /actr6/extras/new-vision/test-models/semantic.ref A /actr6/extras/new-vision/test-models/solution-tests.zip A /actr6/extras/new-vision/test-models/sperling.ref A /actr6/extras/new-vision/test-models/tracking-test.ref A /actr6/extras/new-vision/test-models/tutor-model-solution.ref Adding the reference runs for the test models under the new vision module (since the chunk names differ). ------------------------------------------------------------------------ r538 | db30 | 2007-12-21 10:47:46 -0500 (Fri, 21 Dec 2007) | 1 line Changed paths: M /actr6/extras/sort-environment-lists.lisp Noticed that sort-environment-lists.lisp (in extras) had the wrong line endings. ------------------------------------------------------------------------ r537 | db30 | 2007-12-21 10:43:35 -0500 (Fri, 21 Dec 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp M /actr6/extras/new-vision/emma.lisp Update to the EMMA files to fix a bug with the eye spot in LispWorks. It still doesn't show, but it doesn't throw an error anymore. ------------------------------------------------------------------------ r536 | db30 | 2007-12-20 14:16:37 -0500 (Thu, 20 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Fixed a minor inconsistency in object-present-p that was suppressing some re-encodings in the new module. ------------------------------------------------------------------------ r535 | db30 | 2007-12-20 08:18:29 -0500 (Thu, 20 Dec 2007) | 1 line Changed paths: M /actr6/test-models/model-tester.cl A /actr6/test-models/tracking-test.lisp A /actr6/test-models/tracking-test.ref Adding a test of visual tracking to the set and added a function to test a single model at a time. ------------------------------------------------------------------------ r534 | db30 | 2007-12-19 14:09:35 -0500 (Wed, 19 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp A /actr6/extras/new-vision/examples A /actr6/extras/new-vision/examples/new-vision-test-2.lisp (from /actr6/extras/new-vision/test-models/new-vision-test-2.lisp:518) A /actr6/extras/new-vision/examples/new-vision-test-3.lisp (from /actr6/extras/new-vision/test-models/new-vision-test-3.lisp:518) A /actr6/extras/new-vision/examples/new-vision-test.lisp (from /actr6/extras/new-vision/test-models/new-vision-test.lisp:518) A /actr6/extras/new-vision/examples/simple-new-device.lisp (from /actr6/extras/new-vision/test-models/simple-new-device.lisp:518) A /actr6/extras/new-vision/examples/visual-tracking-example.lisp D /actr6/extras/new-vision/test-models Another small fix for the tracking code and moving the examples to the examples directory (to match the change that happened at the top level). ------------------------------------------------------------------------ r533 | db30 | 2007-12-18 12:31:34 -0500 (Tue, 18 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Updates to the tracking in the new vision module - should work as well as the old version now. ------------------------------------------------------------------------ r532 | db30 | 2007-12-17 12:30:59 -0500 (Mon, 17 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp First pass at adding the visual tracking code into the new module. ------------------------------------------------------------------------ r531 | db30 | 2007-12-16 15:35:05 -0500 (Sun, 16 Dec 2007) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc Updated the unit 1 text to remove the reference to an environment manual. ------------------------------------------------------------------------ r530 | db30 | 2007-12-14 07:02:30 -0500 (Fri, 14 Dec 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Updated vision module to suppress buffer stuffing on screen change if the model is tracking to avoid clobbering the 'tracked' visual-location chunk. ------------------------------------------------------------------------ r529 | db30 | 2007-12-14 07:01:06 -0500 (Fri, 14 Dec 2007) | 1 line Changed paths: M /actr6/support/uni-files.lisp Fixed a bug with the SBCL code in uni-files because without-interrupts isn't in the default package. ------------------------------------------------------------------------ r528 | db30 | 2007-12-13 13:31:20 -0500 (Thu, 13 Dec 2007) | 1 line Changed paths: M /actr6/tools/act-gui-interface.lisp Added an add-items-to-exp-window command to the set of AGI functions. ------------------------------------------------------------------------ r527 | db30 | 2007-12-13 13:13:33 -0500 (Thu, 13 Dec 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Changed update-tracking-mth in vision so that it only updates things if the model is actually tracking something. ------------------------------------------------------------------------ r526 | db30 | 2007-12-13 13:12:23 -0500 (Thu, 13 Dec 2007) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Fixed a small bug in schedule-periodic-events where it would break when passed a non-named function as the action. ------------------------------------------------------------------------ r525 | db30 | 2007-12-11 13:42:08 -0500 (Tue, 11 Dec 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/extras/new-vision/core-modules/vision.lisp When :randomize-time is on the visual reencoding times now vary too (like they did in 5.0). ------------------------------------------------------------------------ r524 | db30 | 2007-12-11 11:32:18 -0500 (Tue, 11 Dec 2007) | 1 line Changed paths: M /actr6/devices/lw/uwi.lisp Fixed a bug in remove-visual-items-from-rpm-window for LispWorks. ------------------------------------------------------------------------ r523 | db30 | 2007-12-07 12:25:44 -0500 (Fri, 07 Dec 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Fixed a bug with the testing of :attended in the requests for the new vision module. ------------------------------------------------------------------------ r522 | db30 | 2007-12-07 11:11:04 -0500 (Fri, 07 Dec 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/vision-categorization.lisp Minor changes to avoid some warnings with the vision-categorization file. ------------------------------------------------------------------------ r521 | db30 | 2007-12-07 11:08:15 -0500 (Fri, 07 Dec 2007) | 1 line Changed paths: A /actr6/extras/new-vision/devices/lw A /actr6/extras/new-vision/devices/lw/device.lisp First pass at a port of the LispWorks device to the new vision module. ------------------------------------------------------------------------ r520 | db30 | 2007-11-30 14:37:14 -0500 (Fri, 30 Nov 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/scheduling.lisp Very minor improvement in the after run name normalization code and some updates to the reference manual. ------------------------------------------------------------------------ r519 | db30 | 2007-11-29 12:57:50 -0500 (Thu, 29 Nov 2007) | 4 lines Changed paths: M /actr6/environment/GUI/init/02-configurations.tcl M /actr6/environment/GUI/server.tcl Added a check to the environment startup code so that if the screen size changes between runs of the environment the user is given the option of resetting to the default window positions. ------------------------------------------------------------------------ r518 | db30 | 2007-11-28 10:48:31 -0500 (Wed, 28 Nov 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp M /actr6/extras/new-vision/emma.lisp M /actr6/extras/new-vision/readme.txt Fixed a bug in EMMA that could leave the module busy after a screen change. ------------------------------------------------------------------------ r517 | db30 | 2007-11-21 14:20:01 -0500 (Wed, 21 Nov 2007) | 1 line Changed paths: A /actr6/extras/new-vision/emma.lisp First pass at a version of EMMA for use with the new vision module. ------------------------------------------------------------------------ r516 | db30 | 2007-11-21 13:42:50 -0500 (Wed, 21 Nov 2007) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Fixed a bug in new-symbol-fct that was introduced when :ncnar parameter was added. ------------------------------------------------------------------------ r515 | db30 | 2007-11-20 12:57:52 -0500 (Tue, 20 Nov 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp Fixed a bug in EMMA with retrieving a stored object frequency. ------------------------------------------------------------------------ r514 | db30 | 2007-11-20 12:56:35 -0500 (Tue, 20 Nov 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Minor update to new vision module code. ------------------------------------------------------------------------ r513 | db30 | 2007-11-15 14:18:25 -0500 (Thu, 15 Nov 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/99-exp-window.tcl M /actr6/extras/emma.lisp Added support for showing emma's eye spot in the visible virtual windows. ------------------------------------------------------------------------ r512 | db30 | 2007-11-14 12:56:59 -0500 (Wed, 14 Nov 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/72-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/73-ctrl-panel-gt-vert-button.tcl Changed the graphic trace tools so that the times are in seconds instead of milliseconds. ------------------------------------------------------------------------ r511 | db30 | 2007-11-05 20:48:52 -0500 (Mon, 05 Nov 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp Fixed some issues for EMMA with ACL that were introduced with the last update to it. ------------------------------------------------------------------------ r510 | db30 | 2007-11-01 08:08:18 -0400 (Thu, 01 Nov 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Couple of bug fixes in the new vision module code. ------------------------------------------------------------------------ r509 | db30 | 2007-10-31 08:46:12 -0400 (Wed, 31 Oct 2007) | 1 line Changed paths: M /actr6/framework/events.lisp M /actr6/framework/scheduling.lisp Fixed some minor issues with the 'end of run' trace output when there are multiple models. ------------------------------------------------------------------------ r508 | db30 | 2007-10-29 10:33:07 -0400 (Mon, 29 Oct 2007) | 5 lines Changed paths: M /actr6/modules/production-compilation.lisp M /actr6/test-models/paired-learning-pstar.ref M /actr6/test-models/paired-learning.ref M /actr6/test-models/solution-tests.zip Update to production compilation so that the actions of the composed productions occur in a particular order. Updated the reference output for the test-models to reflect the new output. ------------------------------------------------------------------------ r507 | db30 | 2007-10-26 08:33:35 -0400 (Fri, 26 Oct 2007) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Updating the conflict resolution trace to indicate when a production fails due to the threshold. ------------------------------------------------------------------------ r506 | db30 | 2007-10-26 08:21:04 -0400 (Fri, 26 Oct 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/modules/utility-and-reward-1.lisp Added the :ut parameter into the current utility module. ------------------------------------------------------------------------ r505 | db30 | 2007-10-15 13:17:06 -0400 (Mon, 15 Oct 2007) | 22 lines Changed paths: A /actr6/test-models A /actr6/test-models/addition.lisp A /actr6/test-models/addition.ref A /actr6/test-models/bst-learn.lisp A /actr6/test-models/bst-learn.ref A /actr6/test-models/bst-nolearn.lisp A /actr6/test-models/bst-nolearn.ref A /actr6/test-models/count.lisp A /actr6/test-models/count.ref A /actr6/test-models/demo2.lisp A /actr6/test-models/demo2.ref A /actr6/test-models/fan.lisp A /actr6/test-models/fan.ref A /actr6/test-models/grouped.lisp A /actr6/test-models/grouped.ref A /actr6/test-models/model-tester.cl A /actr6/test-models/paired-learning-pstar.lisp A /actr6/test-models/paired-learning-pstar.ref A /actr6/test-models/paired-learning.lisp A /actr6/test-models/paired-learning.ref A /actr6/test-models/paired.lisp A /actr6/test-models/paired.ref A /actr6/test-models/semantic.lisp A /actr6/test-models/semantic.ref A /actr6/test-models/solution-tests.zip A /actr6/test-models/sperling.lisp A /actr6/test-models/sperling.ref A /actr6/test-models/tutor-model-solution.lisp A /actr6/test-models/tutor-model-solution.ref Added the test-models directory back into the archive. It now includes a set of testing models and their "expected" output, and the model-tester.cl file has code that will run the models and compare their output to the reference set. Any .lisp files placed into the test-models directory will be tested if one wants to add other tests to their system. See the docs in the model- tester file for more details. Note that testing may not always result in a perfect match to the expected results at this time for two reasons that I've found. The first is that there are some minor rounding differences between different Lisps that can show up along with some minor computation differences that arise becuase of different values for *read-default-float-format*. The other is an issue with the ordering of the conditions and actions of composed productions. They may be ordered slightly differently on different systems, but that should not affect the running of the models. The second issue is being looked into and should be fixed in the near future. ------------------------------------------------------------------------ r504 | db30 | 2007-10-11 11:54:20 -0400 (Thu, 11 Oct 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc A /actr6/examples (from /actr6/test-models:503) D /actr6/test-models Renaming the test-models directory to examples. ------------------------------------------------------------------------ r503 | db30 | 2007-10-10 11:23:01 -0400 (Wed, 10 Oct 2007) | 1 line Changed paths: D /actr6/extras/bold-prediction/bold.lisp M /actr6/extras/bold-prediction/readme.txt A /actr6/other-files/bold.lisp (from /actr6/extras/bold-prediction/bold.lisp:502) Moving the bold module from extras to being loaded automatically, but the environment tools are still in extras. ------------------------------------------------------------------------ r502 | db30 | 2007-10-10 11:11:51 -0400 (Wed, 10 Oct 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/bold.lisp Adding a saftey check to predict-bold-response to verify there's enough time for a sample. ------------------------------------------------------------------------ r501 | db30 | 2007-10-10 11:04:07 -0400 (Wed, 10 Oct 2007) | 1 line Changed paths: M /actr6/devices/lw/device.lisp M /actr6/devices/lw/uwi.lisp Added David Peebles' update for the class of the text items. ------------------------------------------------------------------------ r500 | db30 | 2007-10-04 13:21:54 -0400 (Thu, 04 Oct 2007) | 1 line Changed paths: M /actr6/support/uni-files.lisp Adding the SBCL support for sockets and multi-processing provided by Marc Halbruegge. ------------------------------------------------------------------------ r499 | db30 | 2007-10-04 13:04:24 -0400 (Thu, 04 Oct 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Added the special text processing for :optimize-visual nil and the scale phrase/word attending. ------------------------------------------------------------------------ r498 | db30 | 2007-09-14 08:12:45 -0400 (Fri, 14 Sep 2007) | 1 line Changed paths: M /actr6/devices/lw/device.lisp Updates to the LispWorks device file to fix some bugs it had with LispWorks 4.4. ------------------------------------------------------------------------ r497 | db30 | 2007-09-13 09:07:54 -0400 (Thu, 13 Sep 2007) | 34 lines Changed paths: A /actr6/devices/lw A /actr6/devices/lw/device.lisp A /actr6/devices/lw/uwi.lisp M /actr6/load-act-r-6.lisp Adding the beta verison of the LispWorks device files written by the folks in the Cogworks Laboratory (RPI). I tested it with the tutorial models using LispWorks 5.0 under both Windows and OS X. It was able to run the tutorial models for both people and models, but there are basicall three pending issues which are still being worked on: - A minor issue is that some of the GUI elements were a bit cluttered with how the tutorial models draw them. I will adjust the tutorial models where necessary before considering this out of "beta". One related issue however was that under OS X the location of buttons varied a little from where they were "placed" which causes problems for the unit 6 BST models that expect to find the buttons in a particuar location. The models can be changed to find the button in a range if that continues to be an issue. - The focus ring is currently offset from the actual fixation point because of issues with it intercepting actions intended for the "real" display. This is not ideal because it can be difficult in a display with multiple items to deteremine which one the model is actually attending. - The model must be run with the real-time flag set to t for the interface to be able to accept its actions. With the tutoral models that's not likely a problem since long runs are typically set to run with the :visible nil flag and thus avoiding any issues with "real" windows. Since this is the beta version, if you have any other problems with it or any suggestions as to ways of fixing the issues outlined above please let me know. ------------------------------------------------------------------------ r496 | db30 | 2007-09-05 13:12:25 -0400 (Wed, 05 Sep 2007) | 1 line Changed paths: A /actr6/docs/extending-actr.ppt A /actr6/test-models/creating-modules A /actr6/test-models/creating-modules/demo-model.lisp A /actr6/test-models/creating-modules/demo-module.lisp Adding the ICCM slides on module and device creation to docs and the module and model example into test-models. ------------------------------------------------------------------------ r495 | db30 | 2007-09-05 13:10:34 -0400 (Wed, 05 Sep 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/81-bold-browser.tcl M /actr6/extras/bold-prediction/bold.lisp Updated the BOLD graph tool for the environment to allow viewing of only a subset of the time. ------------------------------------------------------------------------ r494 | db30 | 2007-09-04 09:46:08 -0400 (Tue, 04 Sep 2007) | 6 lines Changed paths: M /actr6/extras/bold-prediction/bold.lisp Update to the BOLD prediction code to add optional start/stop times to predict-bold-response. Also added the parameter :bold-settle which restricts the computing of the BOLD response to only those events which occur within the specified time window (default of 40s). ------------------------------------------------------------------------ r493 | db30 | 2007-09-04 08:57:33 -0400 (Tue, 04 Sep 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/24-stepper.tcl Fixed a bug in the stepper tutor mode to prevent errors for null answers. ------------------------------------------------------------------------ r492 | db30 | 2007-08-28 12:30:08 -0400 (Tue, 28 Aug 2007) | 1 line Changed paths: M /actr6/extras/WNLexicalModule/WNLexical-readme.txt M /actr6/extras/WNLexicalModule/WNLexicalData-readme.txt D /actr6/extras/WNLexicalModule/WNLexical_1-1.lisp A /actr6/extras/WNLexicalModule/WNLexical_3-0-1.lisp Updated the Wordnet module in extras with the new one that uses Wordnet 3.0. ------------------------------------------------------------------------ r491 | db30 | 2007-08-28 11:59:57 -0400 (Tue, 28 Aug 2007) | 1 line Changed paths: A /actr6/extras/WNLexicalModule (from /actr6/extras/WNLexicalModule_1-1:487) D /actr6/extras/WNLexicalModule_1-1 Renaming the Wordnet module's directory in preparation for adding an updated version. ------------------------------------------------------------------------ r490 | db30 | 2007-08-28 10:40:05 -0400 (Tue, 28 Aug 2007) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Update to run-step to add printing the whole queue and the waiting events as options. ------------------------------------------------------------------------ r489 | db30 | 2007-08-23 13:21:54 -0400 (Thu, 23 Aug 2007) | 1 line Changed paths: M /actr6/devices/virtual/device.lisp M /actr6/extras/new-vision/devices/virtual/device.lisp Fixed a bug in the virtual buttons to make sure the text and oval are at the same coordinates (fixed in both the current and new vision modules' device files). ------------------------------------------------------------------------ r488 | db30 | 2007-08-23 12:43:21 -0400 (Thu, 23 Aug 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/bold.lisp Replaced fixnump with integerp since the former isn't actually in the ANSI spec. ------------------------------------------------------------------------ r487 | db30 | 2007-08-21 11:02:57 -0400 (Tue, 21 Aug 2007) | 1 line Changed paths: M /actr6/support/uni-files.lisp Added the fix for uni-send-string to all systems (not just LispWorks now). ------------------------------------------------------------------------ r486 | db30 | 2007-08-17 08:32:31 -0400 (Fri, 17 Aug 2007) | 1 line Changed paths: M /actr6/environment/server.lisp M /actr6/support/uni-files.lisp Updates to help withthe stability of the environment connection under LispWorks. ------------------------------------------------------------------------ r485 | db30 | 2007-08-16 08:40:12 -0400 (Thu, 16 Aug 2007) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/docs/reference-manual.doc M /actr6/environment/env-module.lisp M /actr6/environment/stepper-control.lisp M /actr6/load-act-r-6.lisp Changed the list passed to the retrieval-set-hook so that the chunk to be retrieved is always the first element. ------------------------------------------------------------------------ r484 | db30 | 2007-08-14 11:26:10 -0400 (Tue, 14 Aug 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/81-bold-browser.tcl M /actr6/extras/bold-prediction/82-bold-brain.tcl M /actr6/extras/bold-prediction/83-bold-brain-3d.tcl M /actr6/extras/bold-prediction/84-bold-brain-3d-real-time.tcl Renamed the buttons for the BOLD tools on the control panel. ------------------------------------------------------------------------ r483 | db30 | 2007-08-14 11:20:50 -0400 (Tue, 14 Aug 2007) | 1 line Changed paths: A /actr6/extras/bold-prediction/80-ctrl-panel-bold-label.tcl A /actr6/extras/bold-prediction/81-bold-browser.tcl (from /actr6/extras/bold-prediction/97-bold-browser.tcl:481) A /actr6/extras/bold-prediction/82-bold-brain.tcl (from /actr6/extras/bold-prediction/97b-bold-brain.tcl:481) A /actr6/extras/bold-prediction/83-bold-brain-3d.tcl (from /actr6/extras/bold-prediction/97c-bold-brain-3d.tcl:481) A /actr6/extras/bold-prediction/84-bold-brain-3d-real-time.tcl (from /actr6/extras/bold-prediction/97d-bold-brain-3d-real-time.tcl:481) D /actr6/extras/bold-prediction/97-bold-browser.tcl D /actr6/extras/bold-prediction/97b-bold-brain.tcl D /actr6/extras/bold-prediction/97c-bold-brain-3d.tcl D /actr6/extras/bold-prediction/97d-bold-brain-3d-real-time.tcl Renamed the bold environment tcl files to fit better in the control panel organization. ------------------------------------------------------------------------ r482 | db30 | 2007-08-14 11:20:01 -0400 (Tue, 14 Aug 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/10-ctrl-panel-model-label.tcl M /actr6/environment/GUI/dialogs/20-ctrl-panel-running-label.tcl M /actr6/environment/GUI/dialogs/30-ctrl-panel-inspect-label.tcl D /actr6/environment/GUI/dialogs/50-ctrl-panel-misc-label.tcl D /actr6/environment/GUI/dialogs/65-ctrl-panel-opt-button.tcl A /actr6/environment/GUI/dialogs/70-ctrl-panel-trace-label.tcl A /actr6/environment/GUI/dialogs/72-ctrl-panel-gt-button.tcl (from /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl:481) A /actr6/environment/GUI/dialogs/73-ctrl-panel-gt-vert-button.tcl (from /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl:481) A /actr6/environment/GUI/dialogs/90-ctrl-panel-misc-label.tcl (from /actr6/environment/GUI/dialogs/50-ctrl-panel-misc-label.tcl:481) D /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl A /actr6/environment/GUI/dialogs/95-ctrl-panel-opt-button.tcl (from /actr6/environment/GUI/dialogs/65-ctrl-panel-opt-button.tcl:481) D /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Reordering and adding labels on the environment's control panel to keep things organized. ------------------------------------------------------------------------ r481 | db30 | 2007-08-14 08:52:25 -0400 (Tue, 14 Aug 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/97-bold-browser.tcl M /actr6/extras/bold-prediction/97b-bold-brain.tcl M /actr6/extras/bold-prediction/97c-bold-brain-3d.tcl A /actr6/extras/bold-prediction/97d-bold-brain-3d-real-time.tcl M /actr6/extras/bold-prediction/bold.lisp Update of the bold prediction code to improve the environment tools and add a new one that shows the data while a model runs. ------------------------------------------------------------------------ r480 | db30 | 2007-08-14 08:50:57 -0400 (Tue, 14 Aug 2007) | 1 line Changed paths: M /actr6/environment/GUI/server.tcl M /actr6/environment/env-module.lisp M /actr6/environment/handlers.lisp M /actr6/environment/server.lisp Update to the environment to add an additional update case to the handlers (reset). ------------------------------------------------------------------------ r479 | db30 | 2007-08-08 13:30:57 -0400 (Wed, 08 Aug 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/bold.lisp Big performance improvement in the bold prediction code. ------------------------------------------------------------------------ r478 | db30 | 2007-08-08 11:47:22 -0400 (Wed, 08 Aug 2007) | 8 lines Changed paths: M /actr6/environment/GUI/dialogs/24-stepper.tcl M /actr6/environment/env-module.lisp M /actr6/environment/stepper-control.lisp Added the "run until" option back to the stepper. In addtion to specifying a production name or time one can now also provide a module name. Note that once the "run until" option is hit the stepper will not stop again until one of these things happens: the condition specified is met in the model, the model gets reset, or the stepper dialog is closed and opened again. ------------------------------------------------------------------------ r477 | db30 | 2007-08-08 08:47:21 -0400 (Wed, 08 Aug 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/24-stepper.tcl M /actr6/environment/stepper-control.lisp Added a view showing the parameters for chunks and productions back into the stepper. ------------------------------------------------------------------------ r476 | db30 | 2007-08-07 13:03:01 -0400 (Tue, 07 Aug 2007) | 1 line Changed paths: M /actr6/framework/chunk-spec.lisp Fixed pprint-chunk-spec so that request parameters print out with the ':' on the front. ------------------------------------------------------------------------ r475 | db30 | 2007-08-03 11:56:38 -0400 (Fri, 03 Aug 2007) | 1 line Changed paths: M /actr6/environment/env-module.lisp M /actr6/environment/environment-cmds.lisp M /actr6/environment/server.lisp M /actr6/environment/stepper-control.lisp Cleaning up some minor issues with where things are defined in the environment code. ------------------------------------------------------------------------ r474 | db30 | 2007-08-03 11:35:26 -0400 (Fri, 03 Aug 2007) | 1 line Changed paths: M /actr6/framework/meta-process.lisp Moved some code to avoid a compiler warning. ------------------------------------------------------------------------ r473 | db30 | 2007-08-03 11:32:16 -0400 (Fri, 03 Aug 2007) | 1 line Changed paths: M /actr6/support/uni-files.lisp Minor bug fix in uni-wait-for-char. ------------------------------------------------------------------------ r472 | db30 | 2007-08-02 12:46:45 -0400 (Thu, 02 Aug 2007) | 5 lines Changed paths: M /actr6/extras/bold-prediction/97b-bold-brain.tcl A /actr6/extras/bold-prediction/97c-bold-brain-3d.tcl M /actr6/extras/bold-prediction/bold.lisp M /actr6/extras/bold-prediction/readme.txt Updates to the bold viewing tools to better handle bad/missing data. Also adding a very crude 3d brain viewer which shows the ROIs and the model predictions (similar to what the slice viewer does). ------------------------------------------------------------------------ r471 | db30 | 2007-08-02 12:18:37 -0400 (Thu, 02 Aug 2007) | 1 line Changed paths: M /actr6/extras/chunk-tree-viewer/35a-declarative-tree.tcl Update to the viewer so that it only uses 1 text-based declarative viewer window for showing the chunk details when chunks are clicked. ------------------------------------------------------------------------ r470 | db30 | 2007-07-30 11:08:56 -0400 (Mon, 30 Jul 2007) | 1 line Changed paths: M /actr6/other-files/env-graphic-trace.lisp Updating the graphic trace code so that productions can now have their colors specified explicitly i.e. each production could be shown in a different color set using (setf (production-color ) ). ------------------------------------------------------------------------ r469 | db30 | 2007-07-24 11:45:15 -0400 (Tue, 24 Jul 2007) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Fixed the loader for use with LispWorks 5 for Windows. ------------------------------------------------------------------------ r468 | db30 | 2007-07-24 09:26:38 -0400 (Tue, 24 Jul 2007) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Fixed a bug which occured in some Lisps with the valid-test for the recent :ncnar change. ------------------------------------------------------------------------ r467 | db30 | 2007-07-24 09:00:03 -0400 (Tue, 24 Jul 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/97-bold-browser.tcl Added zoom buttons to the BOLD graph viewer. ------------------------------------------------------------------------ r466 | db30 | 2007-07-20 14:29:09 -0400 (Fri, 20 Jul 2007) | 13 lines Changed paths: M /actr6/environment/GUI/dialogs/35-declarative.tcl A /actr6/extras/chunk-tree-viewer A /actr6/extras/chunk-tree-viewer/35a-declarative-tree.tcl A /actr6/extras/chunk-tree-viewer/HeibergHarrisBall.pdf A /actr6/extras/chunk-tree-viewer/chunk-tree.lisp A /actr6/extras/chunk-tree-viewer/readme.txt Added a new directory to extras with the components necessary to add a new tool to the ACT-R Environment which displays chunks in a tree structure. It is based on the work by Andrea Heiberg, Jack Harris, and Jerry Ball as presented in: Heiberg, A., Harris, J. & Ball, J. (2007). Dynamic Visualization of ACT-R Declarative Memory Structure. In Proceedings of the 8th International Conference on Cognitive Modeling. See the readme there for details on how to install and use it. ------------------------------------------------------------------------ r465 | db30 | 2007-07-20 10:54:11 -0400 (Fri, 20 Jul 2007) | 1 line Changed paths: D /actr6/environment/GUI/dialogs/97-bold-browser.tcx A /actr6/extras/bold-prediction/97-bold-browser.tcl A /actr6/extras/bold-prediction/97b-bold-brain.tcl M /actr6/extras/bold-prediction/bold.lisp M /actr6/extras/bold-prediction/readme.txt A /actr6/extras/bold-prediction/ref-brain.gif Updated bold prediction code and two controls for the Environment to allow the viewing of the bold response data. ------------------------------------------------------------------------ r464 | db30 | 2007-07-20 08:28:44 -0400 (Fri, 20 Jul 2007) | 1 line Changed paths: M /actr6/extras/bold-prediction/bold.lisp Additions to the bold code to support some additional tools for viewing it (coming soon). ------------------------------------------------------------------------ r463 | db30 | 2007-07-17 14:37:28 -0400 (Tue, 17 Jul 2007) | 1 line Changed paths: A /actr6/environment/GUI/dialogs/97-bold-browser.tcx M /actr6/environment/GUI/init/03-fonts.tcl M /actr6/extras/bold-prediction/bold.lisp Added a crude graphing tool for the bold prediction to the environment (disabled by default). ------------------------------------------------------------------------ r462 | db30 | 2007-07-16 14:03:17 -0400 (Mon, 16 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/framework/device-interface.lisp M /actr6/framework/device-interface.lisp Fixed a bug in the default device-speak-string that caused it to throw the 'wrong' error. ------------------------------------------------------------------------ r461 | db30 | 2007-07-15 08:00:09 -0400 (Sun, 15 Jul 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/24-stepper.tcl Improved the stop button in the stepper - it closes the stepper which removes the need to step over the break event. ------------------------------------------------------------------------ r460 | db30 | 2007-07-13 20:10:58 -0400 (Fri, 13 Jul 2007) | 11 lines Changed paths: M /actr6/devices/acl/uwi.lisp M /actr6/devices/mcl/uwi.lisp M /actr6/devices/virtual/uwi.lisp M /actr6/environment/GUI/dialogs/99-exp-window.tcl M /actr6/environment/env-device.lisp M /actr6/extras/new-vision/devices/acl/uwi.lisp M /actr6/tools/act-gui-interface.lisp Added color as a keyword parameter to add-button-to-exp-window. Made the changes so that the visible-virtuals will display that color on the button and the new vision module's devices (in extras) for virtuals and ACL native windows will pick it up for the model to see (though in ACL native windows the color isn't displaying right in the "real" button for some reason). The MCL native device doesn't use the color of the button yet. The devices for the current vision module have not been modified to pick up the color on buttons. ------------------------------------------------------------------------ r459 | db30 | 2007-07-13 16:59:44 -0400 (Fri, 13 Jul 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/24-stepper.tcl M /actr6/environment/stepper-control.lisp Added a stop button back into the stepper window (though the stop event requires an extra step at this point). ------------------------------------------------------------------------ r458 | db30 | 2007-07-13 09:34:10 -0400 (Fri, 13 Jul 2007) | 1 line Changed paths: M /actr6/framework/naming-module.lisp M /actr6/framework/scheduling.lisp Added a new setting for :ncnar - delete. Causes normalize-chunk-names to unintern the 'unneeded' names. NOT recommened in general, but may be needed in rare situations. ------------------------------------------------------------------------ r457 | db30 | 2007-07-13 09:30:56 -0400 (Fri, 13 Jul 2007) | 1 line Changed paths: M /actr6/framework/chunks.lisp Performance boost to normalize-chunk-names (helps when :ncnar is t). ------------------------------------------------------------------------ r456 | db30 | 2007-07-13 06:03:16 -0400 (Fri, 13 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp Fixed a bug in the new vision modules move-attention requests the screen-pos chunk is now checked for validity before passing it on. ------------------------------------------------------------------------ r455 | db30 | 2007-07-09 08:25:42 -0400 (Mon, 09 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp M /actr6/test-models/act-r-6-solutions.zip Fixed a bug in the new vision module which happend if the move-tolerance was 0. ------------------------------------------------------------------------ r454 | db30 | 2007-07-09 06:17:35 -0400 (Mon, 09 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/devices/mcl/device.lisp Minor update for the new device for MCL. ------------------------------------------------------------------------ r453 | db30 | 2007-07-06 13:29:25 -0400 (Fri, 06 Jul 2007) | 1 line Changed paths: A /actr6/extras/new-vision/tutorial A /actr6/extras/new-vision/tutorial/unit2 A /actr6/extras/new-vision/tutorial/unit2/unit2.doc A /actr6/extras/new-vision/tutorial/unit3 A /actr6/extras/new-vision/tutorial/unit3/unit3.doc A /actr6/extras/new-vision/tutorial/unit3/unit3_exp.doc A /actr6/extras/new-vision/tutorial/unit4 A /actr6/extras/new-vision/tutorial/unit4/unit4.doc A /actr6/extras/new-vision/tutorial/unit5 A /actr6/extras/new-vision/tutorial/unit5/unit5.doc Adding updated tutorial units which have traces based on the new vision module. ------------------------------------------------------------------------ r452 | db30 | 2007-07-06 13:28:18 -0400 (Fri, 06 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/core-modules/vision.lisp M /actr6/extras/new-vision/devices/virtual/device.lisp Updates to the new vision module to address the lack of ordering in a hash-table. ------------------------------------------------------------------------ r451 | db30 | 2007-07-05 08:31:10 -0400 (Thu, 05 Jul 2007) | 1 line Changed paths: M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit7/paired-learning-pstar.lisp M /actr6/tutorial/unit7/paired-learning.lisp M /actr6/tutorial/unit7/unit7.doc More tutorial updates for the next release. ------------------------------------------------------------------------ r450 | db30 | 2007-07-05 08:29:05 -0400 (Thu, 05 Jul 2007) | 1 line Changed paths: M /actr6/extras/new-vision/devices/mcl/device.lisp Added the multiline text update to the new device as well. ------------------------------------------------------------------------ r449 | db30 | 2007-07-03 14:17:01 -0400 (Tue, 03 Jul 2007) | 1 line Changed paths: M /actr6/tutorial/unit2/demo2.lisp M /actr6/tutorial/unit2/unit2.doc M /actr6/tutorial/unit3/sperling.lisp M /actr6/tutorial/unit3/unit3.doc M /actr6/tutorial/unit4/paired.lisp M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit5/fan.lisp M /actr6/tutorial/unit5/siegler.lisp M /actr6/tutorial/unit5/unit5.doc M /actr6/tutorial/unit6/bst-learn.lisp M /actr6/tutorial/unit6/bst-nolearn.lisp M /actr6/tutorial/unit6/unit6.doc Unit text and model updates in preparation for the next release. ------------------------------------------------------------------------ r448 | byrne | 2007-07-03 12:20:36 -0400 (Tue, 03 Jul 2007) | 3 lines Changed paths: M /actr6/devices/mcl/device.lisp Made a few minor changes to the MCL device. ------------------------------------------------------------------------ r447 | db30 | 2007-07-03 10:33:37 -0400 (Tue, 03 Jul 2007) | 21 lines Changed paths: M /actr6/framework/naming-module.lisp M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit4/zbrodoff.lisp M /actr6/tutorial/unit7/past-tense.lisp ************************************************************************ **************************** WARNING ********************************** ************************************************************************ This change is small, but it can have a huge affect on the performance of the system. The default value for the parameter :ncnar (see notes for update r406) has been changed to T instead of NIL. The reasoning behind the change is that with it set to T the system is easier to debug and inspect, particularly for beginners. Thus, like :v, this is a parameter that one should disable when the time it takes to run the model matters. The tutorial models that are impacted the most, zbrodoff and past-tense, have been changed to set the parameter to nil, and a note about :ncnar has been added to the end of unit4 (the zbrodoff assignment). ************************************************************************ ************************************************************************ ------------------------------------------------------------------------ r446 | db30 | 2007-07-03 07:57:16 -0400 (Tue, 03 Jul 2007) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Minor change in production compilation to fix an issue with an over-restrictive test for compatibility between productions. ------------------------------------------------------------------------ r445 | db30 | 2007-07-03 07:40:10 -0400 (Tue, 03 Jul 2007) | 1 line Changed paths: A /actr6/extras/bold-prediction A /actr6/extras/bold-prediction/bold.lisp A /actr6/extras/bold-prediction/readme.txt In the extras there is now a module which can be used to produce BOLD response predictions for any model run. ------------------------------------------------------------------------ r444 | db30 | 2007-07-02 13:15:22 -0400 (Mon, 02 Jul 2007) | 1 line Changed paths: A /actr6/extras/new-vision A /actr6/extras/new-vision/core-modules A /actr6/extras/new-vision/core-modules/motor.lisp A /actr6/extras/new-vision/core-modules/vision.lisp A /actr6/extras/new-vision/devices A /actr6/extras/new-vision/devices/acl A /actr6/extras/new-vision/devices/acl/device.lisp A /actr6/extras/new-vision/devices/acl/uwi.lisp A /actr6/extras/new-vision/devices/mcl A /actr6/extras/new-vision/devices/mcl/device.lisp A /actr6/extras/new-vision/devices/virtual A /actr6/extras/new-vision/devices/virtual/device.lisp A /actr6/extras/new-vision/framework A /actr6/extras/new-vision/framework/device-interface.lisp A /actr6/extras/new-vision/readme.txt A /actr6/extras/new-vision/test-models A /actr6/extras/new-vision/test-models/new-vision-test-2.lisp A /actr6/extras/new-vision/test-models/new-vision-test-3.lisp A /actr6/extras/new-vision/test-models/new-vision-test.lisp A /actr6/extras/new-vision/test-models/simple-new-device.lisp Added the first version of the new vision module under extras. If you want to use it see the readme that's included. ------------------------------------------------------------------------ r443 | db30 | 2007-07-02 13:03:47 -0400 (Mon, 02 Jul 2007) | 1 line Changed paths: M /actr6/framework/chunk-spec.lisp Changed the chunk-spec internals so that the accessors will guarantee the slot specifications come out in the order provided to define-chunk-spec i.e. as given in the productions. ------------------------------------------------------------------------ r442 | db30 | 2007-06-27 14:02:23 -0400 (Wed, 27 Jun 2007) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Minor change to allow the conflict-set-hook suppression of conflict-resolution warning to be suppressed by :v or :model-warnings. ------------------------------------------------------------------------ r441 | db30 | 2007-06-26 08:38:51 -0400 (Tue, 26 Jun 2007) | 1 line Changed paths: M /actr6/environment/env-module.lisp Fixed an annoying bug which could result in getting the warning about multiple models with the environment even when there was only one model defined. ------------------------------------------------------------------------ r440 | db30 | 2007-06-26 06:21:56 -0400 (Tue, 26 Jun 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/extras/emma.lisp Minor update to emma to avoid an error when loading under CLisp. ------------------------------------------------------------------------ r439 | db30 | 2007-06-25 11:00:21 -0400 (Mon, 25 Jun 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/extras/emma.lisp Fixed a bug in the emma module which was causing it to schedule events in the past. (I just replaced negative relative times with 0). ------------------------------------------------------------------------ r438 | db30 | 2007-06-19 11:26:59 -0400 (Tue, 19 Jun 2007) | 1 line Changed paths: M /actr6/framework/modules.lisp Just removed some duplicate code I noticed in the modules file. ------------------------------------------------------------------------ r437 | db30 | 2007-06-18 12:44:01 -0400 (Mon, 18 Jun 2007) | 1 line Changed paths: D /actr6/notice.txt Removed the notice.txt file which described how to move from alba to jordan. ------------------------------------------------------------------------ r436 | db30 | 2007-06-18 12:36:59 -0400 (Mon, 18 Jun 2007) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/docs/reference-manual.doc Added a reset-declarative-finsts command. ------------------------------------------------------------------------ r435 | db30 | 2007-06-18 08:23:29 -0400 (Mon, 18 Jun 2007) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/framework/chunk-spec.lisp M /actr6/support/goal-style-module.lisp Moved some chunk-spec manipulation functions from other places into the chunk-spec file. ------------------------------------------------------------------------ r434 | db30 | 2007-06-12 07:28:07 -0400 (Tue, 12 Jun 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Added a save/load data feature to the graphic trace viewers. ------------------------------------------------------------------------ r433 | db30 | 2007-06-11 13:33:44 -0400 (Mon, 11 Jun 2007) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/docs/reference-manual.doc Minor fix for production compilation in replacing strings in safe-evals during a retrieval drop out. ------------------------------------------------------------------------ r432 | db30 | 2007-06-07 08:51:24 -0400 (Thu, 07 Jun 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/other-files/env-graphic-trace.lisp M /actr6/tools/buffer-trace.lisp Update to the buffer-trace tool to better catch requests that start when an error state terminates the previous request. ------------------------------------------------------------------------ r431 | db30 | 2007-06-06 07:16:39 -0400 (Wed, 06 Jun 2007) | 1 line Changed paths: M /actr6/core-modules/goal.lisp Changed the version number of the goal module because of the last update. ------------------------------------------------------------------------ r430 | db30 | 2007-06-05 14:09:45 -0400 (Tue, 05 Jun 2007) | 84 lines Changed paths: M /actr6/core-modules/goal.lisp M /actr6/docs/reference-manual.doc Subtle, but potentially very useful modification to the goal module: the goal module now accepts buffer modification requests. A goal module modification request just schedules a call to mod-buffer-chunk with the modifications at the same time as the request is made. That is essentially the same thing that a production's RHS buffer modification action on the goal buffer does. So, functionally for the model, there is no difference between the RHS actions of: =goal> {slot value}* and +goal> {slot value}* The only difference would be in the events displayed in the trace. Here are two example productions to show the difference: (p test1 =goal> isa goal state start ==> =goal> state next ) and (p test2 =goal> isa goal state start ==> +goal> state next ) Here are the corresponding high detail traces resulting from those productions firing: > (run 1) 0.000 GOAL SET-BUFFER-CHUNK GOAL G REQUESTED NIL 0.000 PROCEDURAL CONFLICT-RESOLUTION 0.000 PROCEDURAL PRODUCTION-SELECTED TEST1 0.000 PROCEDURAL BUFFER-READ-ACTION GOAL 0.050 PROCEDURAL PRODUCTION-FIRED TEST1 0.050 PROCEDURAL MOD-BUFFER-CHUNK GOAL 0.050 PROCEDURAL CONFLICT-RESOLUTION 0.050 ------ Stopped because no events left to process > (run 1) 0.000 GOAL SET-BUFFER-CHUNK GOAL G REQUESTED NIL 0.000 PROCEDURAL CONFLICT-RESOLUTION 0.000 PROCEDURAL PRODUCTION-SELECTED TEST2 0.000 PROCEDURAL BUFFER-READ-ACTION GOAL 0.050 PROCEDURAL PRODUCTION-FIRED TEST2 0.050 PROCEDURAL MODULE-MOD-REQUEST GOAL 0.050 GOAL MOD-BUFFER-CHUNK GOAL 0.050 PROCEDURAL CONFLICT-RESOLUTION 0.050 ------ Stopped because no events left to process The two differense are that with the second production we see an additional event indicating that procedural made a module-mod-request: 0.050 PROCEDURAL MODULE-MOD-REQUEST GOAL and that the mod-buffer-chunk goal action is now attributed to the goal module instead of the procedural module: 0.050 GOAL MOD-BUFFER-CHUNK GOAL The reason one would choose one over the other is that because the modification request is handled by the module it gets noted in the buffer summary whereas the buffer modification by the production is not (the goal module is not involved in such a modification). That can be important when predicting bold responses (which are driven by module activity) or when looking at the graphic traces because a modification request will be noted in the goal module's column/row. ------------------------------------------------------------------------ r429 | db30 | 2007-06-05 09:23:11 -0400 (Tue, 05 Jun 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Fixed some issues with the ranged view of the vertical graphic trace and added it to the horizontal traces too. ------------------------------------------------------------------------ r428 | db30 | 2007-06-04 14:24:37 -0400 (Mon, 04 Jun 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Update to allow the vertical trace tool to be restricted to specified times. ------------------------------------------------------------------------ r427 | db30 | 2007-06-04 12:52:00 -0400 (Mon, 04 Jun 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Minor fix so that the graphic trace windows save their geometry correctly. ------------------------------------------------------------------------ r426 | db30 | 2007-06-04 10:27:56 -0400 (Mon, 04 Jun 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp M /actr6/docs/reference-manual.doc Added the extend-manual-requests command to allow people to add new manual requests to the system without having to modify the manual module code. See the reference manual for details. ------------------------------------------------------------------------ r425 | db30 | 2007-05-24 11:21:20 -0400 (Thu, 24 May 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/framework/device-interface.lisp M /actr6/support/general-pm.lisp Some performance adjustments with vision and the device to eliminate some old code and remove the need to have an update function for the vision module. ------------------------------------------------------------------------ r424 | db30 | 2007-05-22 13:22:36 -0400 (Tue, 22 May 2007) | 78 lines Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl M /actr6/environment/GUI/init/03-fonts.tcl M /actr6/other-files/env-graphic-trace.lisp M /actr6/tools/buffer-trace.lisp More updates to the graphic trace tool, and buffer tracing in general. Changed the default font for the graphic trace displays to be bold. Updated the horizontal trace to use the same "fast" drawing mechanism as the vertical trace does. Added two new parameters to the buffer-trace module to give more modeler control to the graphic tracing tools. :buffer-trace-colors Can be set to a list of (Tcl/Tk) colors to use for the display of the graphic buffer traces. The order of the colors corresponds to the order of the :traced-buffers list (the first buffer listed will be drawn in the first color found in this list). If :traced-buffers is t, then this parameter has no effect. If this list, or any element of it is nil then a default color will be chosen for the corresponding item. The format for specifying a color is as a string with the first element being # and followed by the hex values for the red, green, and blue values respectively. Each hex value can be either 1, 2, or 3 digits (corresponding to 8, 16, or 24 bit color representations), and all must be represented the same way. Examples of red would be: "#f00" "#FF0000" or "#FFF000000". :graphic-column-widths Can be set to a list of numbers which represent the width (in pixels) for the display of the buffer columns in the vertical graphic buffer trace. The order of the values corresponds to the order of the :traced-buffers list (the first buffer listed will be drawn with a column as wide as the first found in this list). If :traced-buffers is t, then this parameter has no effect. If this list, or any element of it is nil then a default width will be chosen for the corresponding item. The default width of the columns is computed as (min 190 (/ 960 "number of buffers traced")). Here is an example settings of those parameters (though the results may not be the most visually pleasing): (sgp :traced-buffers (production visual manual retrieval visual-location) :buffer-trace-colors ("#FF0000" nil nil "#00F") :graphic-column-widths (250 nil nil 50 70)) Also added a new slot to the buffer-summary structure called notes and a new function called add-buffer-trace-notes. Here are the details of the new command: add-buffer-trace-notes Takes two parameters which are the name of a buffer and any notes to set for the buffer summary of that buffer at the current time. This can be used to augment the summaries on the fly, and would most likely be called from an event hook that was watching for something that needed to be noted. There are no restrictions on what can be passed as notes. Calling this will create a maintenance event which records the notes at the current time in the summary structure. The graphic trace tools have had an additional interface line added above the buttons which will display the notes corresponding to a block when the mouse is placed over the corresponding box in the trace (the notes will be printed using the Lisp format string "~a"). Note that only the last set of notes for the buffer during the block of time is displayed. Here's an example which could be added to a model and would add notes to indicate the chunk-type of a chunk placed into any buffer: (defun note-buffers-chunk-type (x) (when (eq (evt-action x) 'set-buffer-chunk) (add-buffer-trace-notes (first (evt-params x)) (chunk-chunk-type-fct (second (evt-params x)))))) (add-pre-event-hook 'note-buffers-chunk-type ) ------------------------------------------------------------------------ r423 | db30 | 2007-05-22 08:01:22 -0400 (Tue, 22 May 2007) | 1 line Changed paths: M /actr6/docs/compilation.xls M /actr6/modules/production-compilation.lisp Fixed a bug in production compilation that would produce 'bad' productions for goal style buffers if p1 had a request and p2 used the buffer variable on the RHS. ------------------------------------------------------------------------ r422 | db30 | 2007-05-21 13:23:53 -0400 (Mon, 21 May 2007) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Fixed a bug in production compilation with productions that used =retrieval on the RHS of a production for which the retrieval was dropped. ------------------------------------------------------------------------ r421 | db30 | 2007-05-21 10:32:43 -0400 (Mon, 21 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl M /actr6/other-files/env-graphic-trace.lisp Update to improve the performance of the vertical graphic tracing tool. ------------------------------------------------------------------------ r420 | db30 | 2007-05-21 07:50:11 -0400 (Mon, 21 May 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/other-files/env-graphic-trace.lisp M /actr6/tools/buffer-trace.lisp Updates to fix a bug in the end times shown with the graphic trace tool for some requests. ------------------------------------------------------------------------ r419 | db30 | 2007-05-21 07:47:23 -0400 (Mon, 21 May 2007) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Added a default method for delete-event so it doesn't throw an error when passed something which isn't an event. ------------------------------------------------------------------------ r418 | db30 | 2007-05-09 12:45:39 -0400 (Wed, 09 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Update the trace tools so that the buttons are disabled during drawing. ------------------------------------------------------------------------ r417 | db30 | 2007-05-09 10:53:30 -0400 (Wed, 09 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Added a new button to the graphic trace viewers so that they can be saved as a multi-page PostScript file instead of a single Encapsulated PostScript block. ------------------------------------------------------------------------ r416 | db30 | 2007-05-07 13:31:43 -0400 (Mon, 07 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Update to make the vertical graphic trace tool better by allowing multiples to be open. ------------------------------------------------------------------------ r415 | db30 | 2007-05-03 11:58:19 -0400 (Thu, 03 May 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/buffers.lisp Fixed a bug that would allow a new module to clobber the buffer spread parameter of another module's buffer. ------------------------------------------------------------------------ r414 | db30 | 2007-05-01 12:21:10 -0400 (Tue, 01 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Fixed the display of start/stop times in the graphic traces. ------------------------------------------------------------------------ r413 | db30 | 2007-05-01 12:19:37 -0400 (Tue, 01 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl Fixed the display of start/stop times in the graphic traces. ------------------------------------------------------------------------ r412 | db30 | 2007-05-01 10:15:52 -0400 (Tue, 01 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl Another minor bug fix in the horizontal graphic trace. ------------------------------------------------------------------------ r411 | db30 | 2007-05-01 06:36:23 -0400 (Tue, 01 May 2007) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl M /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl Minor change to the graphic trace tools to avoid errors when there are brackets in event descriptions. ------------------------------------------------------------------------ r410 | db30 | 2007-04-30 14:13:55 -0400 (Mon, 30 Apr 2007) | 48 lines Changed paths: M /actr6/docs/reference-manual.doc A /actr6/environment/GUI/dialogs/95-ctrl-panel-gt-button.tcl A /actr6/environment/GUI/dialogs/96-ctrl-panel-gt-vert-button.tcl A /actr6/other-files/env-graphic-trace.lisp Added two new buttons to the control Panel in the environment and a Lisp file with the code that drives them. These buttons produce a graphic output based on the buffer trace that can be generated. Here are the general docs for these new controls: To use these controls in the environment you must set the :save-buffer-trace parameter to t explicitly in the model. Then, whenever the model is run, one of the graphic trace tools on the Control Panel can be opened and the "Display" button in the trace tool will draw a graphic trace of the model's most recent run (from time 0 until the time at which the display is requested). It may take a while to draw the trace because each box has to be requested and sent through the socket (eventually that could be simplified, but for now that's how it's going to be). While the drawing is going on it will show "Busy" in the lower left corner of the window, and when it finishes it will show "Done". The image will be drawn for all of the buffers which are set with the :traced-buffers parameter (the default is all buffers). They will be shown in the order specified (left->right for the vertical trace or top->bottom for the horizontal trace). In the graphic trace, a box is drawn when the buffer reports that the module is busy, whenever a request is sent through the buffer, or whenever a chunk is placed into the buffer. The request is drawn at the top of the box and a chunk placed into the buffer is drawn at the bottom (if there is such a chunk). The one exception to that is 0-time events (visual-location and goal requests for example). For 0-time events only the chunk name is shown after the line representing the event in the vertical trace. If you place the mouse cursor over a box (or the chunk name if it is outside of the box like a 0-time event will be) in the trace it will show the start and stop times for that box in the lower left corner of the display window. The "+" and "-" buttons in the control can be used to rescale the image along the time dimension. The "Remove Text" button will erase all of the request and chunk names from the image. The only way to restore them after that is to redisplay the whole thing. The save button will write the image out to a Postscript file (because that's the easy default available in Tk). There are lots of ps->pdf converters out there so hopefully that's not an issue for people, but eventually it could be made to generate something "nicer" if people demand it. ------------------------------------------------------------------------ r409 | db30 | 2007-04-19 13:49:54 -0400 (Thu, 19 Apr 2007) | 1 line Changed paths: M /actr6/framework/model.lisp Fixed a bug in delete-model that would leave the current-model set even after deleteing the last one. ------------------------------------------------------------------------ r408 | db30 | 2007-04-19 13:34:30 -0400 (Thu, 19 Apr 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added a check to the vision reset function to make sure the pm-constant chunk-type isn't redefined. ------------------------------------------------------------------------ r407 | db30 | 2007-04-19 08:53:26 -0400 (Thu, 19 Apr 2007) | 5 lines Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/docs/reference-manual.doc Renamed the chunk parameters :retrieval-activation and :retrieval-time to :last-retrieval-activation and :last- retrieval-time respectively. That avoids any confusion with the general parameter :retrieval-activation and may make their meanings more obvious. ------------------------------------------------------------------------ r406 | db30 | 2007-04-16 09:28:06 -0400 (Mon, 16 Apr 2007) | 18 lines Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/naming-module.lisp M /actr6/framework/scheduling.lisp Added the new parameter :ncnar (normalize chunk names after run). If it is set to t then after each call to one of the model running functions the normalize-chunk-names command will be called to adjust the chunk slot values for all chunks by replacing all chunk references with the chunk's true name. See the docs on normalize-chunk-names for more details (when :ncnar is set it calls normalize-chunk-names without the optional unintern parameter). This may be useful for debugging in situations when a model is using the buffer chunks as slot values and many of those chunks are then being merged into DM. The default is nil which means that no changes are made. Note that this can add a significant amount of time to a model which generates a lot of chunks and thus should only be set when needed for debugging. For reference, on my machine the demo zbrodoff model of unit 4 running (collect-data 1) takes 5 seconds without the parameter set and 16 seconds if it is set to t. ------------------------------------------------------------------------ r405 | db30 | 2007-04-13 09:56:30 -0400 (Fri, 13 Apr 2007) | 7 lines Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/buffers.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/printing.lisp Added a new parameter :cbct (copy buffer chunk trace). It defaults to nil, but if set to t will show an event like this in the trace for medium and high detail levels: 0.000 BUFFER Buffer GOAL copied chunk GOAL to GOAL-0 Which shows the name of the chunk which was copied into the buffer. ------------------------------------------------------------------------ r404 | db30 | 2007-04-13 08:28:36 -0400 (Fri, 13 Apr 2007) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/docs/reference-manual.doc Fixed a bug with sdm because it always returned nil when the isa was omitted even if matching chunks were found. ------------------------------------------------------------------------ r403 | db30 | 2007-04-11 13:58:13 -0400 (Wed, 11 Apr 2007) | 1 line Changed paths: M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit4/zbrodoff.lisp Minor change to the starting model for zbrodoff in unit 4 to avoid an occasional warning from imaginal (didn't have a state free query). ------------------------------------------------------------------------ r402 | db30 | 2007-04-11 13:53:33 -0400 (Wed, 11 Apr 2007) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp One more adjustment to compilation over retrieval drop-outs with p* to catch when variables are renamed in p2. ------------------------------------------------------------------------ r401 | db30 | 2007-04-11 09:28:01 -0400 (Wed, 11 Apr 2007) | 13 lines Changed paths: M /actr6/modules/production-compilation.lisp Updated to more specifically check a compiled production to determine if it is dynamic instead of just assuming so when either of the paraent productions are. Also, the previous update included another bug fix that was not mentioned in the log. There was an issue where a p* that had dynamic slots in a retrieval style buffer request would not cause those variables to be instantiated in the compiled production when the retrieval was dropped out. Without doing that the new production was able to fire in contexts where the parents could not. There may still be some issues related to that, but that fix should catch most of those cases now. ------------------------------------------------------------------------ r400 | db30 | 2007-04-11 08:51:46 -0400 (Wed, 11 Apr 2007) | 16 lines Changed paths: M /actr6/modules/production-compilation.lisp Fix for two bugs found in production compilation related to retrieval style buffers. The first was a minor check to make sure that a retrieval had been requested AND harvested between the two productions before adding the "- chunk-name" to the comment string of the new production. Sometimes that was being added to the comments on productions where it shouldn't have been. That did not affect how the productions were compiled. The second was a little more serious, but likely rare (since nobody had reported seeing it). Consider the compilation of two productions p1 and p2 into p3. If p1 made a request of a retrieval style buffer and p2 made a query of that buffer without a harvesting of the chunk the request from p1 was being omitted from the actions of p3 erroneously. ------------------------------------------------------------------------ r399 | db30 | 2007-04-10 10:19:09 -0400 (Tue, 10 Apr 2007) | 1 line Changed paths: M /actr6/framework/buffers.lisp Updated some of the warning strings in the schedule-* functions to better indicate which function caused a problem. ------------------------------------------------------------------------ r398 | db30 | 2007-04-05 07:26:54 -0400 (Thu, 05 Apr 2007) | 8 lines Changed paths: M /actr6/core-modules/audio.lisp M /actr6/docs/reference-manual.doc Added a set-audloc-default command to the audio module. It works like the set-visloc-default command for the vision module. It sets the conditions to test for the chunk that gets stuffed into the aural-location buffer from the audicon. With that addition, the :hear-newest-only parameter is now no longer necessary and has been depricated (it no longer has any effect other than to print a warning indicating that set-audloc-default should be used instead). ------------------------------------------------------------------------ r397 | db30 | 2007-04-02 08:57:56 -0400 (Mon, 02 Apr 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp Minor adjustment to the zero check in add-gaussian-noise to prevent errors in ALL cases. ------------------------------------------------------------------------ r396 | db30 | 2007-03-30 09:05:21 -0400 (Fri, 30 Mar 2007) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Fixed an issue with the printing of productions which have format direvtives in them. ------------------------------------------------------------------------ r395 | db30 | 2007-03-16 09:01:11 -0400 (Fri, 16 Mar 2007) | 1 line Changed paths: M /actr6/extras/emma.lisp Fixed add-gaussian-noise so that when there is 0 stddev it doesn't throw an error. ------------------------------------------------------------------------ r394 | db30 | 2007-03-15 08:02:57 -0400 (Thu, 15 Mar 2007) | 6 lines Changed paths: M /actr6/core-modules/speech.lisp Changing how a model's speak actions produce the audio event that it hears. Now the audio-event for a model's own speech will be tagged with a location of self instead of external so that if models are talking to each other they can filter out their own speech from that of others (which would presumably be external or possibly tagged with something more model specific as necessary). ------------------------------------------------------------------------ r393 | db30 | 2007-03-15 07:43:33 -0400 (Thu, 15 Mar 2007) | 1 line Changed paths: M /actr6/docs/QuickStart.txt Updating the Quickstart text to indicate other tested Lisps. ------------------------------------------------------------------------ r392 | db30 | 2007-03-05 17:38:50 -0500 (Mon, 05 Mar 2007) | 1 line Changed paths: M /actr6/tutorial/unit7/unit7.doc Minor updates to the unit 7 text. ------------------------------------------------------------------------ r391 | db30 | 2007-02-26 12:25:10 -0500 (Mon, 26 Feb 2007) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Added an appropriate 'fasl' extension to the loader so that things load right with LispWorks 5 on x86 Macs. ------------------------------------------------------------------------ r390 | db30 | 2007-02-22 13:37:15 -0500 (Thu, 22 Feb 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Minor updates to the reference manual. ------------------------------------------------------------------------ r389 | db30 | 2007-02-05 09:16:12 -0500 (Mon, 05 Feb 2007) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Added a hack to get around the broken directory command in the Win32 SBCL. ------------------------------------------------------------------------ r388 | db30 | 2007-02-02 09:05:03 -0500 (Fri, 02 Feb 2007) | 1 line Changed paths: M /actr6/test-models/act-r-6-solutions.zip A /actr6/tutorial/unit7/paired-learning-pstar.lisp A /actr6/tutorial/unit7/paired-learning.lisp D /actr6/tutorial/unit7/paired-pstar.lisp D /actr6/tutorial/unit7/paired.lisp M /actr6/tutorial/unit7/past-tense.lisp M /actr6/tutorial/unit7/unit7.doc M /actr6/tutorial/unit7/unit7_exp.doc Updated the unit 7 materials to use the imaginal buffer (also changed the paired model's filename to paired-learning). ------------------------------------------------------------------------ r387 | db30 | 2007-02-01 13:22:23 -0500 (Thu, 01 Feb 2007) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Fixed a fairly obscure bug that could occur when compiling p* productions with variablized goal-style buffer modifications. ------------------------------------------------------------------------ r386 | db30 | 2007-01-31 21:06:54 -0500 (Wed, 31 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit2/unit2_exp.doc Minor text edits to the experiment doc. ------------------------------------------------------------------------ r385 | db30 | 2007-01-31 13:06:48 -0500 (Wed, 31 Jan 2007) | 1 line Changed paths: M /actr6/notice.txt Updated the notice because the alba name will no longer work after this week. If you have not changed over yet you must do so now (as indicated in the notice.txt file). ------------------------------------------------------------------------ r384 | db30 | 2007-01-31 09:55:55 -0500 (Wed, 31 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit6/bst-learn.lisp M /actr6/tutorial/unit6/bst-nolearn.lisp M /actr6/tutorial/unit6/unit6.doc Updated unit 6 to add the imaginal buffer to the BST models (could go further and use imaginal-action instead of the explicit !bind! calls but not at this time). ------------------------------------------------------------------------ r383 | db30 | 2007-01-30 11:12:51 -0500 (Tue, 30 Jan 2007) | 1 line Changed paths: M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit5/fan.lisp M /actr6/tutorial/unit5/siegler.lisp M /actr6/tutorial/unit5/unit5.doc M /actr6/tutorial/unit5/unit5_exp.doc Updated unit 5 materials with the addition of the imaginal buffer to the models. ------------------------------------------------------------------------ r382 | db30 | 2007-01-30 10:41:48 -0500 (Tue, 30 Jan 2007) | 1 line Changed paths: M /actr6/framework/buffers.lisp Changed the return value of set-buffer-chunk to be the name of the chunk in the buffer after the coping when successful. ------------------------------------------------------------------------ r381 | db30 | 2007-01-26 07:22:16 -0500 (Fri, 26 Jan 2007) | 1 line Changed paths: M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit4/paired.lisp M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit4/zbrodoff.lisp Update of the unit 4 materials to use the imaginal buffer (which I think makes the zbrodoff model easier to follow now). ------------------------------------------------------------------------ r380 | db30 | 2007-01-24 12:13:46 -0500 (Wed, 24 Jan 2007) | 1 line Changed paths: M /actr6/docs/new-utility.doc Edits to the new utility description document based on comments from Jong Kim and Frank Ritter. ------------------------------------------------------------------------ r379 | db30 | 2007-01-24 10:45:43 -0500 (Wed, 24 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit3/unit3.doc Unit 3 models are not being changed to use imaginal, but some minor edits to the text. ------------------------------------------------------------------------ r378 | db30 | 2007-01-22 14:28:09 -0500 (Mon, 22 Jan 2007) | 9 lines Changed paths: M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit1/unit1.doc M /actr6/tutorial/unit2/demo2.lisp M /actr6/tutorial/unit2/unit2-assignment.lisp M /actr6/tutorial/unit2/unit2.doc The tutorial units are now being updated to include the imaginal module in the models and unit texts. The old goal buffer chunks are being split into control and problem representation which will be kept in the goal and imaginal buffers respectively. Unit 2 has the primary description of the imaginal module and is the only one updated at this point, but the others will be following shortly. ------------------------------------------------------------------------ r377 | db30 | 2007-01-19 14:23:46 -0500 (Fri, 19 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc More edits on the manual. ------------------------------------------------------------------------ r376 | db30 | 2007-01-19 14:22:58 -0500 (Fri, 19 Jan 2007) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Minor bug fix in periodic-action that would break if a 'non-named' function was the action. ------------------------------------------------------------------------ r375 | db30 | 2007-01-18 11:46:39 -0500 (Thu, 18 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Undoing a change to audio to fix a bug that could prevent productions from detecting a stuffing of the aural-location buffer 'immediately'. ------------------------------------------------------------------------ r374 | db30 | 2007-01-17 14:20:02 -0500 (Wed, 17 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/load-act-r-6.lisp M /actr6/tools/environment-loader.lisp Updated load files so that SBCL can load things. It is still being tested though so it's not yet considered supported. ------------------------------------------------------------------------ r373 | db30 | 2007-01-16 12:55:12 -0500 (Tue, 16 Jan 2007) | 1 line Changed paths: M /actr6/framework/version-string.lisp M /actr6/tutorial/unit3/unit3.doc M /actr6/tutorial/unit4/unit4.doc A couple of minor updates to the traces in units 3 and 4 using the current version. ------------------------------------------------------------------------ r372 | db30 | 2007-01-16 07:34:23 -0500 (Tue, 16 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/imaginal.lisp Minor bug fix in a warning inside imaginal-mod-request. ------------------------------------------------------------------------ r371 | db30 | 2007-01-16 06:38:27 -0500 (Tue, 16 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Minor bug fix in the handling of a prepare request to the motor module. ------------------------------------------------------------------------ r370 | db30 | 2007-01-15 11:24:34 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc M /actr6/framework/version-string.lisp This is a version for release. ------------------------------------------------------------------------ r369 | db30 | 2007-01-15 11:06:50 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/framework/framework-loader.lisp M /actr6/framework/internal-structures.lisp A /actr6/framework/version-string.lisp Added a new file to hold the version number and made the changes to use that. ------------------------------------------------------------------------ r368 | db30 | 2007-01-15 10:35:36 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Fixed a bug with the removal of 'recreated' production's names from the symbol table. ------------------------------------------------------------------------ r367 | db30 | 2007-01-15 10:08:26 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit6/unit6.doc Minor edits to the unit 6 text. ------------------------------------------------------------------------ r366 | db30 | 2007-01-15 10:02:37 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor bug fix in chunk-copied-from corrected. ------------------------------------------------------------------------ r365 | db30 | 2007-01-15 10:01:46 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Added a saftey check to the fitts computation to catch a width of 0 and assume 1 pixel instead. ------------------------------------------------------------------------ r364 | db30 | 2007-01-15 08:15:38 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit4/unit4.doc Updated unit 4 traces. ------------------------------------------------------------------------ r363 | db30 | 2007-01-15 07:58:33 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit3/sperling.lisp M /actr6/tutorial/unit3/unit3.doc Updates to the unit 3 demo model and unit (removed the attended slot test from the aural-location buffer). ------------------------------------------------------------------------ r362 | db30 | 2007-01-15 07:42:57 -0500 (Mon, 15 Jan 2007) | 1 line Changed paths: M /actr6/tutorial/unit2/unit2.doc Updated unit 2 text with newer trace. ------------------------------------------------------------------------ r361 | db30 | 2007-01-14 20:36:28 -0500 (Sun, 14 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc More edits of the manual. ------------------------------------------------------------------------ r360 | db30 | 2007-01-13 22:59:50 -0500 (Sat, 13 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Few more edits. ------------------------------------------------------------------------ r359 | db30 | 2007-01-13 20:56:10 -0500 (Sat, 13 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc A few more edits. ------------------------------------------------------------------------ r358 | db30 | 2007-01-12 14:33:33 -0500 (Fri, 12 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc D /actr6/docs/test-models.txt More edits and removing the test-models.txt file since the models are gone now. ------------------------------------------------------------------------ r357 | db30 | 2007-01-11 20:43:39 -0500 (Thu, 11 Jan 2007) | 1 line Changed paths: M /actr6/docs/reference-manual.doc Only minor edits... ------------------------------------------------------------------------ r356 | db30 | 2007-01-11 07:30:59 -0500 (Thu, 11 Jan 2007) | 1 line Changed paths: A /actr6/docs/reference-manual.doc Rough draft being made available. The content is good for as much as it covers (basic system and module operations) but the formatting/layout is very, very bad. ------------------------------------------------------------------------ r355 | db30 | 2007-01-11 06:26:07 -0500 (Thu, 11 Jan 2007) | 33 lines Changed paths: M /actr6/core-modules/audio.lisp M /actr6/core-modules/speech.lisp Updates to the speech and audio modules: In audio - Added optional kind and location parameters to the new-other-sound function so that one can fully specify the details of a new sound event using it. - Changed the call to get-articulation-time because it no longer requires passing the speech module as a parameter. In speech - Renamed the get-articulation-time method to get-art-time and added a function get-articulation-time which doesn't require the speech module as a parameter and then calls get-art-time. - Added some saftey checking to the get/register articulation functions. - Took out the require of speech-utils for the Macs for now - was anyone still using that and does it even work? - Added a new parameter :subvocalize-detect-delay which is the detect delay that's set for the audio-event generated when a subvocalize action is taken. It defaults to .3 (which is the default :digit-detect-delay that it used before). The reason for adding it is that I've had people report problems with a model's inability to "keep up" with its subvocalizing using the audio system - it can speak to itself faster than it can hear it because of that delay and the recoding time. This allows people to adjust that as needed. - Similarly, the recode time on the subvocalize audio events is now set to 0s because there probably shouldn't be any added delay in attending to ones own internal speech. ------------------------------------------------------------------------ r354 | db30 | 2007-01-11 06:13:11 -0500 (Thu, 11 Jan 2007) | 1 line Changed paths: M /actr6/support/speech-utils.lisp Used the correct line endings for speech-utils this time... ------------------------------------------------------------------------ r353 | db30 | 2007-01-11 06:11:02 -0500 (Thu, 11 Jan 2007) | 1 line Changed paths: M /actr6/support/speech-utils.lisp Added the provides call to the end of speech-utils. ------------------------------------------------------------------------ r352 | db30 | 2007-01-11 06:09:16 -0500 (Thu, 11 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Added a to do question - should a jam signal an error state for the model? ------------------------------------------------------------------------ r351 | db30 | 2007-01-09 13:58:27 -0500 (Tue, 09 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Made the user motor commands (start-hand-at-mouse, set-cursor-position, and set-hand-location) 'safe' and moved the home offset for the left thumb to 1,2 instead of -1,2 (to move it in like the right thumb is and which seems more correct). ------------------------------------------------------------------------ r350 | db30 | 2007-01-09 13:03:43 -0500 (Tue, 09 Jan 2007) | 14 lines Changed paths: M /actr6/core-modules/motor.lisp M /actr6/framework/device-interface.lisp Minor updates to the motor module (and its interface to the device). - Made output-key check the keyboard array boundaries to avoid errors and print warnings instead. - Fixed a bug with home-hands - the quoted lists caused problems in some Lisps (treated like a constant so once changed it stayed that way). - Patched press-key so that if an invalid key is specified it prints a warning instead of throwing an error. - Made point-hand-at-key check to make sure that there's a valid position for the key before issueing the command. - Changed the prepare request so that hand, finger, r, and theta are supplied directly instead of in a list because all the current styles only use those arguments. ------------------------------------------------------------------------ r349 | db30 | 2007-01-09 08:27:06 -0500 (Tue, 09 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp M /actr6/support/general-pm.lisp Added the execute request to the motor module and took an extra newline off the jam warning. ------------------------------------------------------------------------ r348 | db30 | 2007-01-08 12:41:52 -0500 (Mon, 08 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Just changing the version and doc string to start. ------------------------------------------------------------------------ r347 | db30 | 2007-01-05 11:27:15 -0500 (Fri, 05 Jan 2007) | 30 lines Changed paths: M /actr6/core-modules/audio.lisp A couple of updates to the audio module and its user commands. Changed attend-sound to check exec-s instead of check-jam because the attend-sound doesn't set the preparation state to busy (so it never detected a jam situation). Use randomize-time in scheduling the attend-sound-failure event. Took the update function out of the module definition because it didn't do anything... In print-audicon - Took the string column out because its the same as content when it's there. - Changed the content column to be printed with ~s instead of ~a so that strings are differentiated from symbols. - Added a column for detectable. For new-other-sound, took the optional instr parameter out because the string component of the sound-events doesn't really have a purpose in that case so there doesn't seem to be a reason to set it. For the new-*-sound commands in general - Added checks for current model/mp/module and report a warning if not found. - Switched the return value to t/nil instead of returning the stuff-sound system event. - Converted them from methods to functions so that parameter validation is handled explicitly and ACT-R warnings can be printed instead of Lisp errors being generated when invalid values are used. ------------------------------------------------------------------------ r346 | db30 | 2007-01-04 13:20:40 -0500 (Thu, 04 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Fixed move-attention so that the encoding event gets randomized when :randomize-time is set. ------------------------------------------------------------------------ r345 | db30 | 2007-01-04 09:46:27 -0500 (Thu, 04 Jan 2007) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor change to chunk-copied-from-fct to avoid a warning when the copied-from chunk has been deleted (like the goal module requests do). ------------------------------------------------------------------------ r344 | db30 | 2007-01-03 13:50:12 -0500 (Wed, 03 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/audio.lisp No longer show the stuff-sound-buffer event in the trace (the 'set-buffer-chunk ... requested nil' already indicates that). ------------------------------------------------------------------------ r343 | db30 | 2007-01-03 13:13:15 -0500 (Wed, 03 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added an event to the trace when an encoding-complete 'fails' and added set-visloc-default-fct with model/mp saftey testing. ------------------------------------------------------------------------ r342 | db30 | 2007-01-02 12:58:30 -0500 (Tue, 02 Jan 2007) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Changed the vision module's version to 2.4. Fixed a typo in the assign-finst chunk-type and note :conservative-update-visual as being depricated if it is set. ------------------------------------------------------------------------ r341 | db30 | 2007-01-02 12:54:21 -0500 (Tue, 02 Jan 2007) | 1 line Changed paths: M /actr6/framework/device-interface.lisp Updated proc-display so it checks and warns if no model/mp/device present. ------------------------------------------------------------------------ r340 | db30 | 2006-12-21 14:12:08 -0500 (Thu, 21 Dec 2006) | 1 line Changed paths: M /actr6/support/general-pm.lisp Took the modality flag out of the printing of buffer status because it's the same as state free/busy. ------------------------------------------------------------------------ r339 | db30 | 2006-12-21 14:11:28 -0500 (Thu, 21 Dec 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Changed the version number in the audio-module class to match the module #. ------------------------------------------------------------------------ r338 | db30 | 2006-12-21 14:10:41 -0500 (Thu, 21 Dec 2006) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Added chunks for clear, start-tracking, and assign-finst. ------------------------------------------------------------------------ r337 | db30 | 2006-12-18 10:05:22 -0500 (Mon, 18 Dec 2006) | 1 line Changed paths: M /actr6/framework/device-interface.lisp M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit3/subitize.lisp M /actr6/tutorial/unit3/unit3_exp.doc Removed the :speech-hook and :output-speech parameters. ------------------------------------------------------------------------ r336 | db30 | 2006-12-18 09:43:59 -0500 (Mon, 18 Dec 2006) | 1 line Changed paths: M /actr6/framework/device-interface.lisp Changed current-device-interface to return a single value and changed the devcie module's version to 1.1. ------------------------------------------------------------------------ r335 | db30 | 2006-12-11 10:16:55 -0500 (Mon, 11 Dec 2006) | 1 line Changed paths: D /actr6/test-models/pstar-test8.lisp Removing one last old file from test-models. ------------------------------------------------------------------------ r334 | db30 | 2006-12-11 09:05:43 -0500 (Mon, 11 Dec 2006) | 1 line Changed paths: A /actr6/test-models/act-r-6-solutions.zip D /actr6/test-models/declarative-test.cl D /actr6/test-models/multi-model.cl D /actr6/test-models/test1.cl D /actr6/test-models/unit-1-addition.cl D /actr6/test-models/unit-1-count-v2.cl D /actr6/test-models/unit-1-count.cl D /actr6/test-models/unit-1-semantic.cl R /actr6/test-models/unit-1-together-1-mp.cl R /actr6/test-models/unit-1-together-3-mp.cl D /actr6/test-models/unit-2-demo2-v2.cl D /actr6/test-models/unit-2-demo2.cl D /actr6/test-models/unit-3-sperling.cl D /actr6/test-models/unit-4-paired.cl D /actr6/test-models/unit-5-fan.cl D /actr6/test-models/unit-5-grouped-v2.cl D /actr6/test-models/unit-5-grouped-v3.cl D /actr6/test-models/unit-5-grouped-v4.cl D /actr6/test-models/unit-5-grouped-v5.cl D /actr6/test-models/unit-5-grouped.cl D /actr6/test-models/unit-6-bst-learn.cl D /actr6/test-models/unit-6-bst-nolearn.cl D /actr6/test-models/visual-test.cl D /actr6/testing-modules Cleaning out the outdated test-models and testing-modules. ------------------------------------------------------------------------ r333 | db30 | 2006-12-11 08:59:02 -0500 (Mon, 11 Dec 2006) | 1 line Changed paths: D /actr6/extras/new-utility Removed the extras/new-utility directory. ------------------------------------------------------------------------ r332 | db30 | 2006-12-11 08:53:13 -0500 (Mon, 11 Dec 2006) | 1 line Changed paths: D /actr6/extras/new-utility/unit3/sperling.lisp D /actr6/extras/new-utility/unit3/unit3.doc D /actr6/extras/new-utility/unit5/fan.lisp D /actr6/extras/new-utility/unit5/unit5_exp.doc D /actr6/extras/new-utility/unit6/bst-learn.lisp D /actr6/extras/new-utility/unit6/bst-nolearn.lisp D /actr6/extras/new-utility/unit6/unit6.doc D /actr6/extras/new-utility/unit7/paired-pstar.lisp D /actr6/extras/new-utility/unit7/paired.lisp D /actr6/extras/new-utility/unit7/past-tense.lisp D /actr6/extras/new-utility/unit7/unit7.doc A /actr6/extras/old-utility/act-r-6-solutions.zip (from /actr6/test-models/act-r-6-solutions.zip:331) D /actr6/test-models/act-r-6-solutions.zip A /actr6/tutorial/unit3/sperling.lisp (from /actr6/extras/new-utility/unit3/sperling.lisp:331) A /actr6/tutorial/unit3/unit3.doc (from /actr6/extras/new-utility/unit3/unit3.doc:331) A /actr6/tutorial/unit5/fan.lisp (from /actr6/extras/new-utility/unit5/fan.lisp:331) A /actr6/tutorial/unit5/unit5_exp.doc (from /actr6/extras/new-utility/unit5/unit5_exp.doc:331) A /actr6/tutorial/unit6/bst-learn.lisp (from /actr6/extras/new-utility/unit6/bst-learn.lisp:331) A /actr6/tutorial/unit6/bst-nolearn.lisp (from /actr6/extras/new-utility/unit6/bst-nolearn.lisp:331) A /actr6/tutorial/unit6/unit6.doc (from /actr6/extras/new-utility/unit6/unit6.doc:331) A /actr6/tutorial/unit7/paired-pstar.lisp (from /actr6/extras/new-utility/unit7/paired-pstar.lisp:331) A /actr6/tutorial/unit7/paired.lisp (from /actr6/extras/new-utility/unit7/paired.lisp:331) A /actr6/tutorial/unit7/past-tense.lisp (from /actr6/extras/new-utility/unit7/past-tense.lisp:331) A /actr6/tutorial/unit7/unit7.doc (from /actr6/extras/new-utility/unit7/unit7.doc:331) Move the new tutorial units and models into place. ------------------------------------------------------------------------ r331 | db30 | 2006-12-11 08:39:16 -0500 (Mon, 11 Dec 2006) | 12 lines Changed paths: A /actr6/docs/new-utility.doc (from /actr6/extras/new-utility/new-utility.doc:330) D /actr6/extras/new-utility/new-utility.doc D /actr6/extras/new-utility/utility-and-reward-1.lisp A /actr6/extras/old-utility A /actr6/extras/old-utility/read-me.txt A /actr6/extras/old-utility/unit3 A /actr6/extras/old-utility/unit3/sperling.lisp (from /actr6/tutorial/unit3/sperling.lisp:330) A /actr6/extras/old-utility/unit3/unit3.doc (from /actr6/tutorial/unit3/unit3.doc:330) A /actr6/extras/old-utility/unit5 A /actr6/extras/old-utility/unit5/fan.lisp (from /actr6/tutorial/unit5/fan.lisp:330) A /actr6/extras/old-utility/unit5/unit5_exp.doc (from /actr6/tutorial/unit5/unit5_exp.doc:330) A /actr6/extras/old-utility/unit6 A /actr6/extras/old-utility/unit6/bst-learn.lisp (from /actr6/tutorial/unit6/bst-learn.lisp:330) A /actr6/extras/old-utility/unit6/bst-nolearn.lisp (from /actr6/tutorial/unit6/bst-nolearn.lisp:330) A /actr6/extras/old-utility/unit6/unit6.doc (from /actr6/tutorial/unit6/unit6.doc:330) A /actr6/extras/old-utility/unit7 A /actr6/extras/old-utility/unit7/paired-pstar.lisp (from /actr6/tutorial/unit7/paired-pstar.lisp:330) A /actr6/extras/old-utility/unit7/paired.lisp (from /actr6/tutorial/unit7/paired.lisp:330) A /actr6/extras/old-utility/unit7/past-tense.lisp (from /actr6/tutorial/unit7/past-tense.lisp:330) A /actr6/extras/old-utility/unit7/unit7.doc (from /actr6/tutorial/unit7/unit7.doc:330) A /actr6/extras/old-utility/utility-and-reward.lisp (from /actr6/modules/utility-and-reward.lisp:330) A /actr6/modules/utility-and-reward-1.lisp (from /actr6/extras/new-utility/utility-and-reward-1.lisp:330) D /actr6/modules/utility-and-reward.lisp D /actr6/tutorial/unit3/sperling.lisp D /actr6/tutorial/unit3/unit3.doc D /actr6/tutorial/unit5/fan.lisp D /actr6/tutorial/unit5/unit5_exp.doc D /actr6/tutorial/unit6/bst-learn.lisp D /actr6/tutorial/unit6/bst-nolearn.lisp D /actr6/tutorial/unit6/unit6.doc D /actr6/tutorial/unit7/paired-pstar.lisp D /actr6/tutorial/unit7/paired.lisp D /actr6/tutorial/unit7/past-tense.lisp D /actr6/tutorial/unit7/unit7.doc As of this update the default utility module uses the new utility learning mechanism. The old utility module (PG-C) has been moved to the extras directory under old-utility. The tutorial units and modules which use that mechanism have also been moved to the old-utility directory. The replacement units will be put in place with the next update. ------------------------------------------------------------------------ r330 | db30 | 2006-12-08 12:27:12 -0500 (Fri, 08 Dec 2006) | 32 lines Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp Significant overhaul of the sdp command to make it both more like the older systems in areas where it was lacking and to add new features which improve the ability to control and inspect chunks. More like the old: The sjis and similarities now show the "default" settings as well as those set explicitly by the user. The activation, base-level, and source-spread values are now always the current value (recomputed at the time of the call). New changes: The :references parameter is now depricated. It has been replaced by two parameters :reference-count and :reference-list. They report essentially the same two components that were previously combined in :references. The advantage is that now they can be set (mostly) independently which can be useful when :ol is set to a #. For example, it's now possible to set a chunk to have a count of 20 references and specify particular times for only the 2 most recent ones using sdp. Also added two other parameters :retrieval-activation and :retrieval-time. These record the activation of the chunk the last time it was considered for retrieval and the time at which that retrieval attempt was made. This allows one to see some of what happend during a run without needing to turn on the activation trace. ------------------------------------------------------------------------ r329 | db30 | 2006-12-06 09:49:13 -0500 (Wed, 06 Dec 2006) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp Updates to the base-level setting commands to better check thier parameters. ------------------------------------------------------------------------ r328 | db30 | 2006-12-05 15:49:11 -0500 (Tue, 05 Dec 2006) | 14 lines Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp Changed how :blc works with a user setting of a chunk's base-level when :bll is nil. Previously, the :blc was added to the user specified base-level when :bll was nil, but now it is not. This was done to match how ACT-R 4/5 operated in that situation. Fixed set-base-levels and set-all-base-levels so that they now return the proper base-level values. Modified how set-base-levels works when :ol is set to a number. Previously, it didn't update the reference list to have at least as many references as were specified, but that causes problems for the base-level calculation (ACT-R 5 didn't handle that case). ------------------------------------------------------------------------ r327 | db30 | 2006-12-01 10:51:44 -0500 (Fri, 01 Dec 2006) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp Renamed the internal function set-base-level to set-bl ------------------------------------------------------------------------ r326 | db30 | 2006-11-30 14:13:10 -0500 (Thu, 30 Nov 2006) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp Minor fixes to the clear-dm command (which is a user command that isn't used by the module itself). ------------------------------------------------------------------------ r325 | db30 | 2006-11-30 09:07:06 -0500 (Thu, 30 Nov 2006) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp Changed add-sji-fct so that it removes any older setting of the Sji when adding a new one to the chunk. ------------------------------------------------------------------------ r324 | db30 | 2006-11-30 09:05:17 -0500 (Thu, 30 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Changed chunks-similarity to use chunk-slot-equal instead of equal for non-chunk values. ------------------------------------------------------------------------ r323 | db30 | 2006-11-30 07:18:46 -0500 (Thu, 30 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/imaginal.lisp Added a parameter (:vidt) to enable variability in the imaginal actions using randomize-time. ------------------------------------------------------------------------ r322 | db30 | 2006-11-29 12:17:03 -0500 (Wed, 29 Nov 2006) | 15 lines Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp M /actr6/tutorial/unit5/grouped.lisp M /actr6/tutorial/unit5/siegler.lisp M /actr6/tutorial/unit5/unit5.doc Update to declarative memory to depricate the :pm parameter. The tutorial unit and models have been adjusted as well. Now, :mp is both the setting of the mismatch penalty and the switch to enable partial matching. :mp now defaults to nil whereas previously it was 1.0. This is done to be consistent with all the other declarative parameters which use the value as the switch - :bll, :mas, :ans, and :pas. For now, :pm is still available and it now sets :mp to 1.0 when :pm is set to t, but it is likely to be removed in the near future. ------------------------------------------------------------------------ r321 | db30 | 2006-11-21 12:35:19 -0500 (Tue, 21 Nov 2006) | 20 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/vision.lisp M /actr6/framework/buffers.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/modules.lisp Removed the interdependence between the procedural and vision modules by adding a new component to a module which the procedural system can use. A module can now have a warning function associated with it. If a module has a warning function, then when a production is selected which makes a request to that module, the warning function will be called at the end of the conflict-resolution event. The warning function gets the module instance, the buffer name, and the chunk-type name from the request. The actual request will still occur at the time of the production's firing with all the request details. The current use of this is so that the vision module is now in control of locking out proc-display during a production which makes a visual request instead of the procedural system needing to detect for that. Then, once the request is received the device can be unlocked by the vision module - again instead of the production needing to know to make that action. ------------------------------------------------------------------------ r320 | db30 | 2006-11-20 07:43:36 -0500 (Mon, 20 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Fixed a bug with the :hear-newest-only parameter and updated the version # for the audio module. ------------------------------------------------------------------------ r319 | db30 | 2006-11-17 11:34:17 -0500 (Fri, 17 Nov 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Minor fixes in specify-compilation-buffer-type-fct to make it always return t/nil and add a missing parameter in the calls to print-warning. ------------------------------------------------------------------------ r318 | db30 | 2006-11-17 09:29:00 -0500 (Fri, 17 Nov 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Updated compilation-buffer-type to make it more like other user commands (separate macro and -fct). ------------------------------------------------------------------------ r317 | db30 | 2006-11-17 09:12:50 -0500 (Fri, 17 Nov 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Update to production compilation so that it uses release-name for the unused production names. ------------------------------------------------------------------------ r316 | db30 | 2006-11-16 08:45:49 -0500 (Thu, 16 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Fixed a bug that could result in conflict-resolution events preventing time from updating. ------------------------------------------------------------------------ r315 | db30 | 2006-11-15 12:42:17 -0500 (Wed, 15 Nov 2006) | 1 line Changed paths: M /actr6/extras/new-utility/utility-and-reward-1.lisp Changed the name of the new utility module to utility and its version to 2.0. ------------------------------------------------------------------------ r314 | db30 | 2006-11-15 10:35:08 -0500 (Wed, 15 Nov 2006) | 1 line Changed paths: M /actr6/framework/modules.lisp Minor update to some warning messages in the modules file. ------------------------------------------------------------------------ r313 | db30 | 2006-11-10 14:44:20 -0500 (Fri, 10 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Undoing a change in print-production-text from r308 that introduced a bug with whynot. ------------------------------------------------------------------------ r312 | db30 | 2006-11-10 12:10:20 -0500 (Fri, 10 Nov 2006) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp Fixed a minor cut-and-paste error in the last update. ------------------------------------------------------------------------ r311 | db30 | 2006-11-10 08:43:15 -0500 (Fri, 10 Nov 2006) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Additional update to production parsing. Direct requests are now also forced to be a variable or chunk. ------------------------------------------------------------------------ r310 | db30 | 2006-11-10 07:46:59 -0500 (Fri, 10 Nov 2006) | 8 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Added more testing to the parsing of the buffer-overwrite action in productions. Now, if the value is not a variable it must be a symbol and if the symbol is not a chunk it is created of the type chunk like other non-chunk symbols in productions. This doesn't fix all run-time issues however because a variable could be bound to an non-chunk at run-time which will then lead to a warning, but there's not really any way to stop that. ------------------------------------------------------------------------ r309 | db30 | 2006-11-09 11:14:50 -0500 (Thu, 09 Nov 2006) | 28 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Cleaned up some potential ambiguity in the use of the !output! action when it's passed a list of values. I don't expect this to cause any problems for anyone, but I'll describe the details just so everyone knows. Now, the determination of whether to use format parsing (the old style output action) is whether the first element to the list is explicitly a string. If it is, then it uses the old style of effectively passing that string and the remainder of the arguments to format: !output! ("~10,3f ~a" =var1 answer) Otherwise, it just prints out each of the elements sequentially. The only real difference is in a situation like this: !output! (=var1 ...) Previously, if =var1 was bound to a string then it would pass it off to format, but if it wasn't then all the arguments would be printed. That run time distinction was confusing so now it's determined at definition time. If one still wants that string bound at run time it could be done like this: !eval! (model-output =var ...) However that does require that =var always be a string (but I'm guessing that nobody intentionally used the ambiguity in !output! handling of that to differentiate strings from non-strings). ------------------------------------------------------------------------ r308 | db30 | 2006-11-09 07:45:37 -0500 (Thu, 09 Nov 2006) | 5 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/core-modules/procedural.lisp M /actr6/modules/production-compilation.lisp Added an internal check to record whether p or p* is used to create a production and now pp prints the appropriate one. Also updated production compilation so that it only uses p* if one or both of the parent productions was a p*. ------------------------------------------------------------------------ r307 | db30 | 2006-11-09 06:59:06 -0500 (Thu, 09 Nov 2006) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp Updated to whynot so that it reports the lack of a current model better. ------------------------------------------------------------------------ r306 | db30 | 2006-11-09 06:58:08 -0500 (Thu, 09 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Minor fix for un-delay-conflict-resolution to fix a bug when there was no current model. ------------------------------------------------------------------------ r305 | db30 | 2006-11-08 12:33:13 -0500 (Wed, 08 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Slight update on how the :conflict-set-hook function operates - suppression of any selection is now explicit. ------------------------------------------------------------------------ r304 | db30 | 2006-11-08 09:11:08 -0500 (Wed, 08 Nov 2006) | 7 lines Changed paths: M /actr6/core-modules/procedural.lisp Added the option of having production firing times be noisy (using the randomize-time command like the PM components do). There's a new parameter :vpft (variable production firing times) which defaults to nil, but if it is t and :randomize-time isn't nil, then production firing times will be randomized. ------------------------------------------------------------------------ r303 | db30 | 2006-11-08 08:50:00 -0500 (Wed, 08 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Fixed a bug in all-productions which happened if there was no current model. ------------------------------------------------------------------------ r302 | db30 | 2006-11-08 08:44:16 -0500 (Wed, 08 Nov 2006) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp General cleanup of some commands and fixed a bug in penable. ------------------------------------------------------------------------ r301 | db30 | 2006-11-08 08:42:50 -0500 (Wed, 08 Nov 2006) | 1 line Changed paths: M /actr6/framework/model.lisp Fixed a bug in delete-model which could leave the wrong current-model after a deletion. ------------------------------------------------------------------------ r300 | db30 | 2006-11-07 13:50:38 -0500 (Tue, 07 Nov 2006) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Noted some minor issues with the -output commands in the bugs and to do list for future reference. ------------------------------------------------------------------------ r299 | db30 | 2006-11-07 13:45:34 -0500 (Tue, 07 Nov 2006) | 1 line Changed paths: M /actr6/core-modules/imaginal.lisp Cleanup of the non-shown events generated by the imaginal module. ------------------------------------------------------------------------ r298 | db30 | 2006-10-25 10:56:22 -0400 (Wed, 25 Oct 2006) | 1 line Changed paths: M /actr6/modules/utility-and-reward.lisp Fixed a small bug that could degrade performance - the production history was reecorded whenever :esc was t even if :pl was nil. ------------------------------------------------------------------------ r297 | db30 | 2006-10-23 14:12:56 -0400 (Mon, 23 Oct 2006) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Reworking of the naming module to improve for space and time. NOTE: thorough testing is still ongoing for this so if you notice significant degredation in performance or any issues with names after this update let me know. ------------------------------------------------------------------------ r296 | db30 | 2006-10-23 14:09:35 -0400 (Mon, 23 Oct 2006) | 1 line Changed paths: M /actr6/framework/chunks.lisp Some minor adjustments in normalize-chunk-names to clean up other references to the chunk-name. ------------------------------------------------------------------------ r295 | db30 | 2006-10-23 14:08:05 -0400 (Mon, 23 Oct 2006) | 1 line Changed paths: M /actr6/support/goal-style-module.lisp Update of the goal-style-request to take advantage of the release-name function. ------------------------------------------------------------------------ r294 | db30 | 2006-10-17 10:31:56 -0400 (Tue, 17 Oct 2006) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor bug fix in the normalize-chunk-names function for the uninterning case. ------------------------------------------------------------------------ r293 | db30 | 2006-10-16 11:58:53 -0400 (Mon, 16 Oct 2006) | 1 line Changed paths: M /actr6/framework/printing.lisp Fixed a bug in r291 that caused problems in some Lisps. ------------------------------------------------------------------------ r292 | db30 | 2006-10-11 10:15:51 -0400 (Wed, 11 Oct 2006) | 29 lines Changed paths: M /actr6/framework/chunks.lisp M /actr6/framework/naming-module.lisp Added two new commands: normalize-chunk-names and release-name (along with release-name-fct). Release-name works as the "undo" for the new-name command. It uninterns a symbol that was interned by new-name (assuming that it's safe to unintern it). That happens at a reset automatically, but if one is generating a lot of temp names while a model runs this allows you to release them prior to the reset if there are memory/symbol table issues. Not really something that is of general purpose use, but may be useful down the road or in special circumstances. Normalize-chunk-names goes through all of the chunks in the model (ALL of the chunks, not just those in DM) and replaces all chunk names in slots with the chunk's true name i.e. it cleans up any merged references so that they "look" the same when inspecting the chunks. Because the merged names all pointed to the same chunk anyway it shouldn't affect how the model works. It also takes an optional paramter. If the optional param. is non-nil it will also remove all of the "merged" chunk names from the model's chunk table and use release-name to free up the chunk name symbol. That is not recommended because it may be the case that user code or indeed ACT-R modules (particularly vision) may have references to those merged chunk names which will be broken after that. However, if one has LOTS of unnecessary merged names, knows that they aren't referenced elsewhere, and it's creating a problem due to memory/symbol table issues, then you can use normalize- chunk-names to clean out the old chunk name symbols. ------------------------------------------------------------------------ r291 | db30 | 2006-10-11 08:39:26 -0400 (Wed, 11 Oct 2006) | 5 lines Changed paths: M /actr6/framework/printing.lisp Possibly significant performance improvement - the filter-output-events function was taking ~20% of the time to run for some models under ACL due to the last update I made to it (back in July). I've modified how that works now and performance is much better in ACL. ------------------------------------------------------------------------ r290 | db30 | 2006-10-11 07:33:52 -0400 (Wed, 11 Oct 2006) | 9 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp Fixed a bug with the priority of the buffer overwrite production action. It had the same priority as the buffer modification which could lead to problems because the overwrite could occur before the modification which would mean the wrong chunk got modified (or worse that the modification triggered a warning because it was invalid). The priority on the overwrites is now 90 and the buffer modifications are still at 100. ------------------------------------------------------------------------ r289 | db30 | 2006-10-10 11:40:24 -0400 (Tue, 10 Oct 2006) | 1 line Changed paths: M /actr6/extras/new-utility/utility-and-reward-1.lisp M /actr6/modules/utility-and-reward.lisp Changed some warnings in the utility code so they turn off with the :model-warnings flag. ------------------------------------------------------------------------ r288 | db30 | 2006-10-10 11:36:33 -0400 (Tue, 10 Oct 2006) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc Just some minor edits to the unit 1 text. ------------------------------------------------------------------------ r287 | db30 | 2006-09-27 07:54:42 -0400 (Wed, 27 Sep 2006) | 1 line Changed paths: M /actr6/core-modules/imaginal.lisp Updates to imaginal so it shows a warning wben there is a jam and now ignores the new request. ------------------------------------------------------------------------ r286 | db30 | 2006-09-25 08:22:22 -0400 (Mon, 25 Sep 2006) | 18 lines Changed paths: M /actr6/core-modules/imaginal.lisp Updated the imaginal module so that it can now take a modification request: (p modify-imaginal-buffer =imaginal> isa some-type ==> +imaginal> some-slot-a new-value-1 some-slot-b new-value-2 ) The module treats that just like a RHS = (it just changes the specified slots of the chunk in the buffer) except that it takes :imaginal-delay seconds before the change occurs and the module is busy during that time. ------------------------------------------------------------------------ r285 | db30 | 2006-09-22 12:27:18 -0400 (Fri, 22 Sep 2006) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Fixed another bug related to the peck command in the move-finger method. ------------------------------------------------------------------------ r284 | db30 | 2006-09-13 10:07:47 -0400 (Wed, 13 Sep 2006) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Fixed a bug which caused an error if an explicit peck request was made. ------------------------------------------------------------------------ r283 | db30 | 2006-09-13 08:40:12 -0400 (Wed, 13 Sep 2006) | 13 lines Changed paths: M /actr6/core-modules/audio.lisp M /actr6/core-modules/declarative-memory.lisp M /actr6/core-modules/imaginal.lisp M /actr6/core-modules/motor.lisp M /actr6/core-modules/speech.lisp M /actr6/core-modules/vision.lisp M /actr6/extras/emma.lisp M /actr6/extras/new-utility/utility-and-reward-1.lisp M /actr6/framework/device-interface.lisp M /actr6/framework/misc-utils.lisp M /actr6/framework/random.lisp M /actr6/modules/utility-and-reward.lisp M /actr6/tools/buffer-trace.lisp Because act-r-random and act-r-noise do not accept zero as a valid parameter (because the Lisp random function doesn't and the idea is that act-r-random should act just like the built in random function) I went through the sources to clean up a few places where that could happen and might lead to problems. The primary change was to add a new test function, nonneg, to misc-utils to go along with posnum (which was adjusted to actually match its name) and then make sure the modules used the proper check in thier parameter tests so that parameters which end up being passed to act-r-random can't be zero. ------------------------------------------------------------------------ r282 | db30 | 2006-09-13 08:15:54 -0400 (Wed, 13 Sep 2006) | 1 line Changed paths: M /actr6/tools/act-gui-interface.lisp Changed permute-list so that it doesn't have a problem when passed nil or a non-list. ------------------------------------------------------------------------ r281 | db30 | 2006-09-13 07:36:12 -0400 (Wed, 13 Sep 2006) | 1 line Changed paths: M /actr6/framework/chunk-spec.lisp Changed chunk-slot-equal so that it uses equalp instead of equal for non-chunk and non-string values. ------------------------------------------------------------------------ r280 | db30 | 2006-09-08 13:15:46 -0400 (Fri, 08 Sep 2006) | 1 line Changed paths: M /actr6/core-modules/vision.lisp M /actr6/devices/acl/device.lisp M /actr6/devices/mcl/device.lisp M /actr6/devices/virtual/device.lisp Fixing the issue with virtual items not filling the size slot of the features. Moved fill-default-dimensions to vision and make sure that the virtual items call it. ------------------------------------------------------------------------ r279 | db30 | 2006-09-07 12:55:57 -0400 (Thu, 07 Sep 2006) | 1 line Changed paths: M /actr6/framework/naming-module.lisp Minor change to new-symbol command so that it only returns one value. ------------------------------------------------------------------------ r278 | db30 | 2006-09-07 12:54:31 -0400 (Thu, 07 Sep 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Update to production compilation to set the imaginal buffer to a goal type by deefault. ------------------------------------------------------------------------ r277 | db30 | 2006-08-31 07:37:22 -0400 (Thu, 31 Aug 2006) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Removed the *already-loaded-act-r-6-files* variable test and instead test for :act-r-6.0 on the *features* list in the main load file. ------------------------------------------------------------------------ r276 | db30 | 2006-08-30 13:37:32 -0400 (Wed, 30 Aug 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Minor reordering to the activation trace wrt partial matching (so it's clear when the partial matching hook gets called). ------------------------------------------------------------------------ r275 | db30 | 2006-08-30 10:57:15 -0400 (Wed, 30 Aug 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Fixed a bug with partial matching. If a comparision test (>, <, >=, or <=) was used in a retrieval request with partial matching on that test result was ignored i.e. a chunk which didn't match that test could have been retrieved. ------------------------------------------------------------------------ r274 | db30 | 2006-08-29 13:57:06 -0400 (Tue, 29 Aug 2006) | 13 lines Changed paths: M /actr6/core-modules/motor.lisp Added a features slot to the prepare motor request so that features other than the style can be provided. The features slot takes a list of the other features as would be passed to the prepare-motor command not including the style: +manual> isa prepare style punch features (:hand right :finger index) ------------------------------------------------------------------------ r273 | db30 | 2006-08-29 11:12:58 -0400 (Tue, 29 Aug 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Eliminated a warning that would print out if a production was compiled that didn't have a retrieval removed (the warning had no impact on the functioning of the compiled production). ------------------------------------------------------------------------ r272 | db30 | 2006-08-29 11:11:17 -0400 (Tue, 29 Aug 2006) | 1 line Changed paths: M /actr6/modules/utility-and-reward.lisp Minor fix to compute-utility to correct for an issue with calling actr-random with 0 (which isn't an issue with previous versions because the change to actr-random hasn't been committed yet). ------------------------------------------------------------------------ r271 | db30 | 2006-08-24 08:12:49 -0400 (Thu, 24 Aug 2006) | 1 line Changed paths: M /actr6/extras/new-utility/utility-and-reward-1.lisp Added a 'null' learning event marker to the new utility mechanims in extras (like the old system had by setting success and failure both to t) - if you call trigger-reward with a value of nil it just clears the production history. ------------------------------------------------------------------------ r270 | db30 | 2006-08-24 07:27:38 -0400 (Thu, 24 Aug 2006) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Undid an old change to move-cursor because it isn't needed anymore and it had a bug if the location passed in was one that was buffer stuffed (probably a rare occurence). ------------------------------------------------------------------------ r269 | db30 | 2006-08-22 08:50:18 -0400 (Tue, 22 Aug 2006) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Fixed a bug in the motor module's prepare request - it wasn't making the module busy during the preparation time. ------------------------------------------------------------------------ r268 | db30 | 2006-08-08 11:06:09 -0400 (Tue, 08 Aug 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Fixed spreading-activation function so that it doesn't print warnings when a buffer which would spread activation is empty. ------------------------------------------------------------------------ r267 | db30 | 2006-08-08 10:52:40 -0400 (Tue, 08 Aug 2006) | 1 line Changed paths: M /actr6/framework/chunks.lisp Added a test to define-chunks-fct so that it prints a warning instead of an error for bad add-dm/define-chunks calls. ------------------------------------------------------------------------ r266 | db30 | 2006-08-08 09:56:37 -0400 (Tue, 08 Aug 2006) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Minor fix to a warning message in delete-event-hook. ------------------------------------------------------------------------ r265 | db30 | 2006-07-27 13:34:49 -0400 (Thu, 27 Jul 2006) | 1 line Changed paths: M /actr6/extras/emma.lisp Updated the emma file in extras with the code to draw the dot in ACL and the package switches. ------------------------------------------------------------------------ r264 | schoelles | 2006-07-27 10:55:01 -0400 (Thu, 27 Jul 2006) | 2 lines Changed paths: A /actr6/extras/emma.lisp ACTR6 version of emma.lisp - report problems to schoem@rpi.edu ------------------------------------------------------------------------ r263 | db30 | 2006-07-21 19:36:25 -0400 (Fri, 21 Jul 2006) | 1 line Changed paths: M /actr6/framework/scheduling.lisp A couple of fixes related to parameter checks (schedule-periodic-event) and break events that are waiting (conditions-met and update-waiting-events). ------------------------------------------------------------------------ r262 | db30 | 2006-07-21 19:29:51 -0400 (Fri, 21 Jul 2006) | 1 line Changed paths: M /actr6/framework/printing.lisp Fixed a slight bug that was introduced with the last change to filter-output-events (break models don't have a model so in that case it just picks the 'first' one which is what the old mechanism did anyway). ------------------------------------------------------------------------ r261 | db30 | 2006-07-21 19:25:39 -0400 (Fri, 21 Jul 2006) | 1 line Changed paths: M /actr6/core-modules/goal.lisp Changed the clear-delayed-goal event from the goal-focus command to a maintenance event (to avoid an occasional unnecessary conflict resolution). ------------------------------------------------------------------------ r260 | db30 | 2006-07-19 18:03:45 -0400 (Wed, 19 Jul 2006) | 6 lines Changed paths: M /actr6/framework/scheduling.lisp M /actr6/tools/buffer-trace.lisp Effectively removed the schedule-maintenance-* functions. That has been made a keyword parameter now on the regular schedule-* functions. The "maintenance" functions print a warning now to indicate the other functions should be used instead. The only other file this impacted was the buffer-trace file in tools. ------------------------------------------------------------------------ r259 | db30 | 2006-07-19 17:31:28 -0400 (Wed, 19 Jul 2006) | 1 line Changed paths: M /actr6/framework/events.lisp Minor update to the docs in the events file as to the name of the output accessor. ------------------------------------------------------------------------ r258 | db30 | 2006-07-19 17:29:03 -0400 (Wed, 19 Jul 2006) | 1 line Changed paths: M /actr6/framework/printing.lisp Updated filter-output-events so that the event's model's printin module gets referenced instead of the current model's. ------------------------------------------------------------------------ r257 | db30 | 2006-07-16 19:17:39 -0400 (Sun, 16 Jul 2006) | 1 line Changed paths: M /actr6/core-modules/vision.lisp Minor update to avoid warnings in query-vision-module due to the changes from r250. ------------------------------------------------------------------------ r256 | db30 | 2006-07-16 19:15:53 -0400 (Sun, 16 Jul 2006) | 1 line Changed paths: M /actr6/framework/buffers.lisp Minor update to avoid warnings from buffer-chunk-fct due to the changes from r250. ------------------------------------------------------------------------ r255 | db30 | 2006-07-14 14:25:30 -0400 (Fri, 14 Jul 2006) | 1 line Changed paths: M /actr6/framework/scheduling.lisp Minor updates for run-until-time and run-n-events to prevnt going back in time and to better report why it stopped (respectivly). ------------------------------------------------------------------------ r254 | db30 | 2006-07-13 11:29:53 -0400 (Thu, 13 Jul 2006) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Minor fix to meta-p-output so that it will always return nil. ------------------------------------------------------------------------ r253 | db30 | 2006-07-12 17:43:49 -0400 (Wed, 12 Jul 2006) | 1 line Changed paths: M /actr6/framework/parameters.lisp Updated test-and-set-parameter-value (an internal function) so that sgp better signals a problem with an invalid parameter value request. ------------------------------------------------------------------------ r252 | db30 | 2006-07-12 17:36:26 -0400 (Wed, 12 Jul 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp Actually removed the :sa parameter to get rid of the warning. ------------------------------------------------------------------------ r251 | db30 | 2006-07-12 17:35:02 -0400 (Wed, 12 Jul 2006) | 1 line Changed paths: M /actr6/modules/production-compilation.lisp Fixed a typo in the :pct parameter documentation ------------------------------------------------------------------------ r250 | db30 | 2006-07-11 14:08:55 -0400 (Tue, 11 Jul 2006) | 12 lines Changed paths: M /actr6/commands/dm-commands.lisp M /actr6/core-modules/declarative-memory.lisp M /actr6/framework/chunks.lisp Minor updates to fix some rough edges in the chunk API functions. - changd true-chunk-name to a macro and added true-chunk-name-fct (resulted in the updated dm-commands and declarative-memory files). - made several of the chunk API functions print warnings when the chunk name was invalid (which they didn't previously). - fixed a problem with merge-chunks that would allow one to use it to merge ANY two chunks regardless of whether they were equal (which wasn't an issue for declarative since it did the check in advance already, but could have been an issue if some other module were to use it). ------------------------------------------------------------------------ r249 | db30 | 2006-07-10 13:58:27 -0400 (Mon, 10 Jul 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Took off the [r248] from the version. ------------------------------------------------------------------------ r248 | db30 | 2006-07-10 13:13:45 -0400 (Mon, 10 Jul 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Updated framework version with [r248] for web release. ------------------------------------------------------------------------ r247 | db30 | 2006-07-10 13:08:14 -0400 (Mon, 10 Jul 2006) | 1 line Changed paths: M /actr6/extras/new-utility/new-solutions.zip Minor update in the unit 6 solution model for the new utility mechanism (turned off :v). ------------------------------------------------------------------------ r246 | db30 | 2006-07-10 11:54:46 -0400 (Mon, 10 Jul 2006) | 1 line Changed paths: M /actr6/extras/new-utility/unit7/paired-pstar.lisp M /actr6/extras/new-utility/unit7/paired.lisp A /actr6/extras/new-utility/unit7/unit7.doc Update for the unit7 materials in the new-utility section of extras. ------------------------------------------------------------------------ r245 | db30 | 2006-07-06 12:53:45 -0400 (Thu, 06 Jul 2006) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc Fixed a minor typo in the unit 1 text. ------------------------------------------------------------------------ r244 | db30 | 2006-07-06 12:52:47 -0400 (Thu, 06 Jul 2006) | 1 line Changed paths: M /actr6/framework/chunks.lisp Fixed a bug in define-chunks-fct. It didn't automatically create chunks for symbols that were specified as default values in the chunk-type if they weren't already a chunk. ------------------------------------------------------------------------ r243 | db30 | 2006-07-06 12:51:10 -0400 (Thu, 06 Jul 2006) | 1 line Changed paths: M /actr6/framework/model.lisp Fixed a bug in delete-model-fct where a format was missing an argument. ------------------------------------------------------------------------ r242 | db30 | 2006-06-29 08:24:14 -0400 (Thu, 29 Jun 2006) | 1 line Changed paths: M /actr6/docs/QuickStart.txt M /actr6/framework/misc-utils.lisp M /actr6/load-act-r-6.lisp Added the changes provided by Don Morrison to allow it to be used with CLisp v2.38 - and updated the quickstart doc with the details (the environment won't work so you need to remove the environment-loader from tools when using CLisp). ------------------------------------------------------------------------ r241 | db30 | 2006-06-26 08:36:13 -0400 (Mon, 26 Jun 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp Fixed a bug in print-production-text that could break when printing a production with a chunk-type that ends in ! or >. ------------------------------------------------------------------------ r240 | db30 | 2006-06-22 10:33:33 -0400 (Thu, 22 Jun 2006) | 1 line Changed paths: M /actr6/tutorial/unit1/unit1.doc Updated unit 1 because some of the traces were slightly different from those printed by the currnt system. ------------------------------------------------------------------------ r239 | db30 | 2006-06-22 10:02:28 -0400 (Thu, 22 Jun 2006) | 1 line Changed paths: M /actr6/extras/new-utility/unit3/sperling.lisp A /actr6/extras/new-utility/unit3/unit3.doc A /actr6/extras/new-utility/unit5/unit5_exp.doc A /actr6/extras/new-utility/unit6/unit6.doc Adding som of the updated unit texts for the new utility mechanism in the extras. ------------------------------------------------------------------------ r238 | db30 | 2006-06-20 09:05:09 -0400 (Tue, 20 Jun 2006) | 1 line Changed paths: M /actr6/commands/dm-commands.lisp Fixed a bug in set-base-levels that resulted in an error if one had :ol nil and didn't provide a creation time for a chunk. ------------------------------------------------------------------------ r237 | db30 | 2006-06-13 11:41:15 -0400 (Tue, 13 Jun 2006) | 1 line Changed paths: A /actr6/extras/new-utility A /actr6/extras/new-utility/new-solutions.zip A /actr6/extras/new-utility/new-utility.doc A /actr6/extras/new-utility/read-me.txt A /actr6/extras/new-utility/unit3 A /actr6/extras/new-utility/unit3/sperling.lisp A /actr6/extras/new-utility/unit5 A /actr6/extras/new-utility/unit5/fan.lisp A /actr6/extras/new-utility/unit6 A /actr6/extras/new-utility/unit6/bst-learn.lisp A /actr6/extras/new-utility/unit6/bst-nolearn.lisp A /actr6/extras/new-utility/unit7 A /actr6/extras/new-utility/unit7/paired-pstar.lisp A /actr6/extras/new-utility/unit7/paired.lisp A /actr6/extras/new-utility/unit7/past-tense.lisp A /actr6/extras/new-utility/utility-and-reward-1.lisp Added a new module and support files to the extras directory. The new module implements a replacement for the current utility mechanisms that is being investigated. See the included files for the details. ------------------------------------------------------------------------ r236 | db30 | 2006-06-13 11:38:41 -0400 (Tue, 13 Jun 2006) | 1 line Changed paths: M /actr6/tutorial/unit6/bst-nolearn.lisp Minor update of the bst-nolearn model of unit 6 (removed some unneeded parameter settings). ------------------------------------------------------------------------ r235 | db30 | 2006-06-13 07:22:47 -0400 (Tue, 13 Jun 2006) | 9 lines Changed paths: A /actr6/extras/WNLexicalModule_1-1 A /actr6/extras/WNLexicalModule_1-1/LGPL.txt A /actr6/extras/WNLexicalModule_1-1/LLGPL.txt A /actr6/extras/WNLexicalModule_1-1/Models A /actr6/extras/WNLexicalModule_1-1/Models/wnl-find-all-definitions.lisp A /actr6/extras/WNLexicalModule_1-1/Models/wnl-find-definition.lisp A /actr6/extras/WNLexicalModule_1-1/WNLexical-readme.txt A /actr6/extras/WNLexicalModule_1-1/WNLexicalData-readme.txt A /actr6/extras/WNLexicalModule_1-1/WNLexical_1-1.lisp Added Bruno Emond's WordNet lexical database module to the extras dirctory. Note, that to actually use the module you must also get the corresponding data files from: http://sourceforge.net/projects/actr-wn-lexical/ because they are too large (~15MB) to include with the ACT-R 6 source archives. ------------------------------------------------------------------------ r234 | db30 | 2006-06-13 07:06:17 -0400 (Tue, 13 Jun 2006) | 1 line Changed paths: A /actr6/extras/spacing-effect A /actr6/extras/spacing-effect/spacing-effect.lisp (from /actr6/extras/spacing-effect.lisp:233) D /actr6/extras/spacing-effect.lisp A /actr6/extras/temporal A /actr6/extras/temporal/temporal.lisp (from /actr6/extras/temporal.lisp:233) A /actr6/extras/temporal/temporal.pdf (from /actr6/extras/temporal.pdf:233) A /actr6/extras/temporal/test-temporal.lisp (from /actr6/extras/test-temporal.lisp:233) D /actr6/extras/temporal.lisp D /actr6/extras/temporal.pdf D /actr6/extras/test-temporal.lisp Reorganizing the files in the extras directory in preparation of some new additions. ------------------------------------------------------------------------ r233 | db30 | 2006-06-12 13:22:36 -0400 (Mon, 12 Jun 2006) | 1 line Changed paths: M /actr6/core-modules/declarative-memory.lisp M /actr6/support/uni-files.lisp Two minor updates in uni-files. One to hopefully improve performance of the environment in CMUCL and the other to clear up a minor dependency on the environment code. Also added a 'to do' note in the declarative module for possible future reference. ------------------------------------------------------------------------ r232 | db30 | 2006-06-01 12:58:12 -0400 (Thu, 01 Jun 2006) | 1 line Changed paths: M /actr6/modules/utility-and-reward.lisp Fixed a bug in the utility hook call to make sure it passes the production's name to the hook function. ------------------------------------------------------------------------ r231 | db30 | 2006-05-22 13:54:23 -0400 (Mon, 22 May 2006) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp M /actr6/test-models/act-r-6-solutions.zip M /actr6/tutorial/unit6/choice.lisp M /actr6/tutorial/unit6/unit6.doc Fixed a minor error in the experimental data for the unit 6 model (which has been there for as far back as I can find) based on John's recommendation. Noted that Mike is also an author for the misc-utils.lisp file (since many of those functions come from the RPM sources). ------------------------------------------------------------------------ r230 | db30 | 2006-05-22 12:02:41 -0400 (Mon, 22 May 2006) | 1 line Changed paths: A /actr6/docs/compilation.doc M /actr6/docs/test-models.txt Added the compilation.doc notes on production compilation to the docs folder and noted in the test-models.txt file that the test models are currently out of date because the tutorial is now used for testing. ------------------------------------------------------------------------ r229 | db30 | 2006-05-03 14:01:15 -0400 (Wed, 03 May 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Another fix for audio to make sure that old sounds are purged from the audicon correctly. ------------------------------------------------------------------------ r228 | db30 | 2006-05-03 13:45:20 -0400 (Wed, 03 May 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Another update to audio to fix an issue with the error flags on aural and aural-location requests. ------------------------------------------------------------------------ r227 | db30 | 2006-05-03 07:33:35 -0400 (Wed, 03 May 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp M /actr6/framework/scheduling.lisp Fixed a bug in the parsing of an aural-location request and noted some issues to address in the scheduling code (no changes at this time). ------------------------------------------------------------------------ r226 | db30 | 2006-04-28 08:16:04 -0400 (Fri, 28 Apr 2006) | 16 lines Changed paths: A /actr6/notice.txt This is an announcement that the machine on which the Subversion archive of ACT-R 6 is stored is going to change. The new machine is jordan.psy.cmu.edu instead of alba.psy.cmu.edu. Right now, both names point to the same machine, but that will change at some point in the future. You do not need to checkout a new version to change over. Subversion provides a command to make the switch seemlessly. All you need to do is issue this command (in the appropriate working directory): svn switch --relocate svn://alba.psy.cmu.edu/usr/local/svnroot/actr6 svn://jordan.psy.cmu.edu/usr/local/svnroot/actr6 That should retarget your copy, and then all future updates will come from jordan instead of alba. No actual changes to the system occurred with this commit. ------------------------------------------------------------------------ r225 | db30 | 2006-04-26 12:37:20 -0400 (Wed, 26 Apr 2006) | 2 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/tutorial/unit1/unit1.doc Minor update of the unit 1 text and some updates to the vision module to help with tracking and the use of lowest and highest in the distance slot. ------------------------------------------------------------------------ r224 | db30 | 2006-04-11 14:56:43 -0400 (Tue, 11 Apr 2006) | 1 line Changed paths: M /actr6/tutorial/unit5/unit5.doc Updated unit 5 text because it still had the ACT-R 5 set-general-basel-levels call in it instead of the ACT-R 6 set-base-levels. ------------------------------------------------------------------------ r223 | db30 | 2006-03-28 14:25:42 -0500 (Tue, 28 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Removed the [r222] from the version. ------------------------------------------------------------------------ r222 | db30 | 2006-03-28 13:56:23 -0500 (Tue, 28 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Updating the version to 222 for web release. ------------------------------------------------------------------------ r221 | db30 | 2006-03-28 13:39:02 -0500 (Tue, 28 Mar 2006) | 19 lines Changed paths: M /actr6/core-modules/audio.lisp M /actr6/core-modules/vision.lisp M /actr6/framework/internal-structures.lisp Minor fixes to vision and audio modules and it's going directly to the web site as 221. In vision the query-vision-module function was patched because it had a problem when the model was tracking an item. The real cause is possibly something to do with the tracking maintenance, but the error still needs to be avoided in query-vision-module. In the audio module a new parameter was added :hear-newest-only. It controls how stuff-sound-buffer picks which audio-event to stuff into the aural-location buffer. If :hear-newest-only is set to t, then stuff=sound-buffer includes :onset :highest when it calls find-sound. It seems like often one might want the newest sound to be the one that gets stuffed into the buffer when there're a lot of sounds, or if the model has missed a chance to hear an "old" sound. The default is nil to keep it compatible with the old version. ------------------------------------------------------------------------ r220 | db30 | 2006-03-21 16:11:45 -0500 (Tue, 21 Mar 2006) | 4 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/commands/procedural-cmds.lisp M /actr6/framework/internal-structures.lisp M /actr6/modules/utility-and-reward.lisp New version for the web site because it turns out that there were a few bugs related to the utility update still lingering... ------------------------------------------------------------------------ r219 | db30 | 2006-03-21 14:06:35 -0500 (Tue, 21 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp New web release ------------------------------------------------------------------------ r218 | db30 | 2006-03-21 14:03:27 -0500 (Tue, 21 Mar 2006) | 6 lines Changed paths: M /actr6/core-modules/vision.lisp Some more work on the visual tracking support. It should be a lot more useable now, but probably less efficient. It continuously overwrites/restuffs the chunks when there's a tracking update - even when there's no change, because it apparently can't just use the old feature for comparison. The one exception is that it won't change a chunk in the buffer that doesn't "belong" to tracking. ------------------------------------------------------------------------ r217 | db30 | 2006-03-15 12:50:58 -0500 (Wed, 15 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Taking off the web version marker. ------------------------------------------------------------------------ r216 | db30 | 2006-03-15 09:46:54 -0500 (Wed, 15 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Actually change the version this time. ------------------------------------------------------------------------ r215 | db30 | 2006-03-15 09:34:42 -0500 (Wed, 15 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Building a new version for the web. ------------------------------------------------------------------------ r214 | db30 | 2006-03-14 17:29:36 -0500 (Tue, 14 Mar 2006) | 10 lines Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/modules/production-compilation.lisp M /actr6/modules/utility-and-reward.lisp After some performance testing I realized that the use of pp to get the production names in the utility code is a problem because it pays a big price even with no-output (it still does the formatting...). So, I've fixed that now in the files where I was using pp - this should be faster than the last couple of updates (particularly with respect to spp). ------------------------------------------------------------------------ r213 | db30 | 2006-03-14 16:40:47 -0500 (Tue, 14 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Undo web version numbering. ------------------------------------------------------------------------ r212 | db30 | 2006-03-14 15:21:31 -0500 (Tue, 14 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp building a new version for web release 1.1 [r212]. ------------------------------------------------------------------------ r211 | db30 | 2006-03-14 15:07:26 -0500 (Tue, 14 Mar 2006) | 1 line Changed paths: M /actr6/modules/utility-and-reward.lisp Fixed a typo that slipped by in the utility-and-reward file with the last commit. ------------------------------------------------------------------------ r210 | db30 | 2006-03-14 14:56:05 -0500 (Tue, 14 Mar 2006) | 38 lines Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp M /actr6/environment/stepper-control.lisp M /actr6/modules/production-compilation.lisp M /actr6/modules/utility-and-reward.lisp One big change to the procedural system and some minor updates to it as well. First the big change, the utility computation is now completely contained in the utility-and-reward file. That's tied into the symbolic layer of the procedural system (production matching and production compilation) through an API given in the header of the utility-and-reward file. All the associated parameters are now owned by a utility module instead of being tied into the procedural and production-compilation modules. What this means is that if one wants to completely replace the utility mechanism the only file that needs to be touched is the utility-and-reward file and there's an API given for what must be implemented. That required updates to basically all the procedural-related files and there were a few other updates along with it: Changed the extend-production mechanism so that the accessor and setf work with the production name instead of the production structure. This also simplifies things so that the utility mechanisms only ever see the production name symbols - the underlying representation doesn't matter so updates to improve that won't break any utility extensions. Changed pp so that it doesn't exclude disabled productions and instead prints a note to indicate that the production is disabled. Fixed a bug in print-productions that broke when there was a direct request followed by a !output!. Added a define-p command that does the same thing as p because that helps those using MCL as their editor and fits nicely with all the other define-... commands. Finally, fixed a bug in production-compilation that was introduced in r196 that caused buffer references on the RHS to be incorrectly instantiated. ------------------------------------------------------------------------ r209 | db30 | 2006-03-14 14:11:17 -0500 (Tue, 14 Mar 2006) | 1 line Changed paths: M /actr6/framework/misc-utils.lisp Update to no-output command so that it works when called recursively. ------------------------------------------------------------------------ r208 | db30 | 2006-03-08 22:56:34 -0500 (Wed, 08 Mar 2006) | 2 lines Changed paths: M /actr6/framework/scheduling.lisp Fixed a bug in schedule-break-after-module that prevented it from actually ever being scheduled. ------------------------------------------------------------------------ r207 | db30 | 2006-03-08 11:58:55 -0500 (Wed, 08 Mar 2006) | 4 lines Changed paths: M /actr6/framework/device-interface.lisp For the device-interface, I've made the key-to-loc and key-to-command tables consistent with respect to - and hyphen. Both tables now have entries for both symbols mapped to the same things. ------------------------------------------------------------------------ r206 | db30 | 2006-03-07 20:29:42 -0500 (Tue, 07 Mar 2006) | 1 line Changed paths: M /actr6/framework/device-interface.lisp Fixed a bug that I thought was fixed once before - the sign of the theta value in the peck-recoil for a press-key of hyphen had the wrong sign. ------------------------------------------------------------------------ r205 | db30 | 2006-03-06 16:47:11 -0500 (Mon, 06 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp M /actr6/test-models/act-r-6-solutions.zip Took the [r204] off the version and made sure that the most up to date solution models are included. ------------------------------------------------------------------------ r204 | db30 | 2006-03-06 11:53:51 -0500 (Mon, 06 Mar 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Changed version to 1.1 [204] for web release. ------------------------------------------------------------------------ r203 | db30 | 2006-03-06 11:41:37 -0500 (Mon, 06 Mar 2006) | 5 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/tutorial/unit7/unit7.doc Minor update to visual tracking to better handle when the tracked object leaves the visicon. Also fixed a minor typo in the unit 7 text. ------------------------------------------------------------------------ r202 | db30 | 2006-03-06 11:35:31 -0500 (Mon, 06 Mar 2006) | 16 lines Changed paths: M /actr6/framework/internal-structures.lisp M /actr6/framework/meta-process.lisp M /actr6/framework/scheduling.lisp Updates to the meta-process and scheduling to incorporate the max-time-delta parameter into mp-real-time-management. This provides a solution for a problem that can occur when hooking a model up to an asynchronous system in real-time. The problem is that if there aren't any model events to process at some point the model just jumps right to its "end" time and waits for real time to catch up and asynchronous events that come in effectively get pushed off until then. This new parameter allows one to specify the maximum amount of time that the model will "skip ahead" without some event occuring. It still isn't perfect for a multi-model situation because it only works at the meta-process level and thus one model could still end up skipping more time if other models were still doing things, but it's better than before. ------------------------------------------------------------------------ r201 | db30 | 2006-03-02 23:48:34 -0500 (Thu, 02 Mar 2006) | 3 lines Changed paths: M /actr6/framework/chunk-types.lisp Fixed an issue with chunk-type inheritance that caused problems with retrieval requests if the inheritance tree was more than 2 levels deep. ------------------------------------------------------------------------ r200 | db30 | 2006-03-01 13:45:23 -0500 (Wed, 01 Mar 2006) | 6 lines Changed paths: M /actr6/core-modules/vision.lisp M /actr6/framework/scheduling.lisp Updated vision module tracking to better handle losing sight of the tracked object (works like the re-encoding on a stationary object). Also modified run-until-time (and run-full-time) so that the end time event is now a maintenance-event. ------------------------------------------------------------------------ r199 | db30 | 2006-02-27 14:21:21 -0500 (Mon, 27 Feb 2006) | 24 lines Changed paths: M /actr6/framework/internal-structures.lisp M /actr6/framework/meta-process.lisp M /actr6/framework/scheduling.lisp Bug fix and update to the scheduler. First, run-until-time (and run-full-time) didn't work when there was more than one model currently defined - that's fixed now. Also, a meta-process can now be run with an arbitrary time source as the reference for "real time". A new function has been added that allows one to specify the function to call for the current "real time", the resolution of that time, and a function to call when the model needs to wait: ;;; mp-real-time-management (&key (time-function 'get-internal-real-time) ;;; (units-per-second internal-time-units-per-second) ;;; (slack-function 'real-time-slack)) ;;; mp-real-time-management sets the function and divisor used to determine the ;;; current time in seconds when then real-time flag is specified to run the ;;; meta-process. The slack function is called continuously while the model ;;; is waiting for the time to advance when there is a discrepancy. It must take ;;; one parameter which will be the current delta between the model time and ;;; the currently reported "real time". ;;; The default behavior is tied to the real clock and it calls the sleep function ;;; if the model has to spin for greater than 150ms. ------------------------------------------------------------------------ r198 | db30 | 2006-02-20 13:08:39 -0500 (Mon, 20 Feb 2006) | 5 lines Changed paths: M /actr6/core-modules/procedural.lisp M /actr6/framework/chunks.lisp Fixed a bug (introduced in r180) that caused chunk parameters to be incorrectly handled when merging if the main system was both compiled and loaded in the session. If it just loaded the compiled files then it worked fine, but that first time it was loaded (or if one were to set the :actr-recompile flag) then there was a problem. ------------------------------------------------------------------------ r197 | db30 | 2006-02-07 17:16:11 -0500 (Tue, 07 Feb 2006) | 1 line Changed paths: M /actr6/tools/buffer-trace.lisp Bug fix for the buffer trace where a call to subseq could specify an end longer than the string. ------------------------------------------------------------------------ r196 | db30 | 2006-02-07 14:28:23 -0500 (Tue, 07 Feb 2006) | 4 lines Changed paths: M /actr6/modules/production-compilation.lisp A /actr6/test-models/pstar-test8.lisp Fixed two issues with production compilation. One related to variablized slots in a "compiled away" retrieval in p* and one related to the order of !safe-bind! calls on the RHS of the newly created production. ------------------------------------------------------------------------ r195 | db30 | 2006-01-31 16:19:40 -0500 (Tue, 31 Jan 2006) | 1 line Changed paths: M /actr6/commands/p-star-cmd.lisp Fixed a bug that was introduced to p* with the r189 update. ------------------------------------------------------------------------ r194 | db30 | 2006-01-31 13:46:14 -0500 (Tue, 31 Jan 2006) | 56 lines Changed paths: A /actr6/tools/buffer-trace.lisp There is now a module called buffer-trace which supports a new style of tracing the models. Instead of showing the individual events of the model, a summary of the buffer interactions for (potentially all) buffers is shown. The full docs can be found in the tools/buffer-trace.lisp file, but here's a sample of what it looks like when enabled for the demo2 model using the new parameter :buffer-trace and indicating a subset of the buffers with the :traced-buffers parameter: CG-USER(86): (do-experiment) | PRODUCTION | GOAL | VISUAL-LOCATION | VISUAL | MANUAL | 0.000 | +FIND-UNATTEN+ | . GOAL | . LOC0 | | | 0.025 | ************** | . | . | | | 0.050 | +ATTEND-LETTE+ | . ======= | . LOC1 | | | 0.075 | ************** | . | . | | | 0.100 | ************** | . ======= | . ------- | +MOVE-ATTENTI+ | | 0.125 | | . | | ************** | | 0.150 | | . | | ************** | | 0.175 | | . | | ************** | | 0.185 | +ENCODE-LETTE+ | . | | . TEXT0 | | 0.210 | ************** | . | | . | | 0.235 | + RESPOND + | . ======= | | . ------- | | 0.260 | ************** | . | | | | 0.285 | ************** | . ======= | | | + PRESS-KEY + | 0.310 | | . | | | ************** | 0.335 | | . | | | ************** | 0.360 | | . | | | ************** | 0.385 | | . | | | ************** | 0.410 | | . | | | ************** | 0.435 | | . | | | ************** | 0.460 | | . | | | ************** | 0.485 | | . | | | ************** | 0.510 | | . | | | ************** | 0.535 | | . | | | ************** | 0.560 | | . | | | ************** | 0.585 | | . | | | ************** | 0.610 | | . | | | ************** | 0.635 | | . | | | ************** | 0.660 | | . | | | ************** | 0.685 | | . | | | ************** | 0.710 | | . | | ************** | ************** | 0.735 | | . | | ************** | ************** | 0.760 | | . | | ************** | ************** | 0.770 | | . | |E | ************** | 0.795 | | . | |E | ************** | 0.820 | | . | |E | ************** | 0.835 | | . | |E | | 0.860 | | . | |E | | 0.885 | | . | |E | | 0.910 | | . | |E | | 0.935 | | . | |E | | 0.960 | | . | |E | | 0.985 | | . | |E | | 0.985 ------ Stopped because no events left to process ------------------------------------------------------------------------ r193 | db30 | 2006-01-31 13:31:48 -0500 (Tue, 31 Jan 2006) | 11 lines Changed paths: M /actr6/framework/internal-structures.lisp M /actr6/framework/scheduling.lisp Some updates to the events that can be placed into the event-queue. There is now a new type of event called a maintenance-event which can be scheduled (and some of the internal events have been switched to be maintenance events). The idea being that not every event is meaningful to the cognitive system - some are just there to make things work. For example, an event that records information for a trace probably shouldn't trigger a new round of conflict-resolution. Thus, the schedule-after-* functions now take an extra keyword parameter :include-maintenance (which defaults to nil). That indicates whether or not the maintenance events in the queue should be considered when looking for an event after which to schedule the one specified. ------------------------------------------------------------------------ r192 | db30 | 2006-01-25 16:59:40 -0500 (Wed, 25 Jan 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp M /actr6/framework/buffers.lisp M /actr6/framework/scheduling.lisp Three updates on a path to providing a new built-in model trace tool. First, the procedural module now has a buffer called production. This is so that it can be queried to determine if it is free/busy just like other modules. It also uses the buffer to indicate production selection actions in the event queue, but does not put chunks into the buffer or actually do anything in response to a request. The 'run' functions have been updated so that they generate a run-terminated event in all the models of the meta-process when the call exits (unless it's terminated by a break event). Finally, the schedule-module-request function now allows a keyword of :details to be specified which will be used for the event. That should be extended to all the schedule-module/buffer functions eventually. ------------------------------------------------------------------------ r191 | db30 | 2006-01-23 11:26:58 -0500 (Mon, 23 Jan 2006) | 1 line Changed paths: M /actr6/environment/GUI/dialogs/90-listener.tcx Update to the environment listener dialog (only needed for the Windows standalone version) to fix an issue with the ACL side sometimes hanging on exit. ------------------------------------------------------------------------ r190 | db30 | 2006-01-19 15:51:58 -0500 (Thu, 19 Jan 2006) | 1 line Changed paths: M /actr6/framework/chunks.lisp Minor bug fix related to last update. ------------------------------------------------------------------------ r189 | db30 | 2006-01-19 15:12:03 -0500 (Thu, 19 Jan 2006) | 92 lines Changed paths: M /actr6/commands/p-star-cmd.lisp M /actr6/framework/chunk-types.lisp M /actr6/framework/chunks.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/printing.lisp Two updates related to features of p*. First, p*'s no longer report warnings during conflict resolution when a variablized slot name has a binding that's invalid for the chunk-type it's used in. The production just fails to match as one would expect with no extra warning. The other change relates to the chunk extension mechanism. There is now a paramter called :show-all-slots. If it is set to t, then things operate just like they have previously - printing a chunk shows all the slots of the chunk-type regardless of whether the particular chunk actually had such a slot added. If it is set to nil (the default) then printing a chunk shows only the original slots of the chunk-type and the new slots for which a value has been added. Here is a simple model and output to show the difference (which doesn't seem too important in the simple case, but if there are lots of slots added over many different chunks it can be easier to understand now): (define-model test (sgp :trace-detail high) (chunk-type goal step slot other-slot) (add-dm (g isa goal step 1 slot new-slot)) (goal-focus g) (p* start =goal> isa goal step 1 slot =s ==> =goal> =s new -goal>) ) CG-USER(108): (run 1) 0.000 GOAL SET-BUFFER-CHUNK GOAL G REQUESTED NIL 0.000 PROCEDURAL CONFLICT-RESOLUTION 0.000 PROCEDURAL PRODUCTION-SELECTED START 0.000 PROCEDURAL BUFFER-READ-ACTION GOAL 0.050 PROCEDURAL PRODUCTION-FIRED START 0.050 PROCEDURAL MOD-BUFFER-CHUNK GOAL 0.050 PROCEDURAL EXTENDING-CHUNK-TYPE GOAL NEW-SLOT 0.050 PROCEDURAL CLEAR-BUFFER GOAL 0.050 PROCEDURAL CONFLICT-RESOLUTION 0.050 ------ Stopped because no events left to process 0.05 10 NIL CG-USER(109): (sgp :show-all-slots) :SHOW-ALL-SLOTS NIL (default NIL) : Whether or not to show unfilled extended slots when printing chunks (NIL) CG-USER(110): (sdm isa goal) G ISA GOAL STEP 1 SLOT NEW-SLOT OTHER-SLOT NIL G-0 ISA GOAL STEP 1 SLOT NEW-SLOT OTHER-SLOT NIL NEW-SLOT NEW (G G-0) CG-USER(111): (sgp :show-all-slots t) (T) CG-USER(112): (sdm isa goal) G ISA GOAL STEP 1 SLOT NEW-SLOT OTHER-SLOT NIL NEW-SLOT NIL G-0 ISA GOAL STEP 1 SLOT NEW-SLOT OTHER-SLOT NIL NEW-SLOT NEW (G G-0) ------------------------------------------------------------------------ r188 | db30 | 2006-01-17 14:15:36 -0500 (Tue, 17 Jan 2006) | 1 line Changed paths: M /actr6/framework/buffers.lisp M /actr6/framework/internal-structures.lisp M /actr6/framework/naming-module.lisp M /actr6/framework/printing.lisp M /actr6/framework/random.lisp M /actr6/modules/production-compilation.lisp M /actr6/support/central-parameters.lisp Only changes are to several of the modules' versions and the framework's version. It's now framework 1.1 and all of the modules except the old RPM modules (vision, speech, motor, and audio) have had the version updated to remove the 'aX' from the end. I also cleaned up some of the documentation strings for those modules as well. ------------------------------------------------------------------------ r187 | db30 | 2006-01-16 18:38:46 -0500 (Mon, 16 Jan 2006) | 1 line Changed paths: M /actr6/framework/internal-structures.lisp Updated version for web release. ------------------------------------------------------------------------ r186 | db30 | 2006-01-16 18:33:37 -0500 (Mon, 16 Jan 2006) | 1 line Changed paths: M /actr6/tutorial/unit3/unit3.doc M /actr6/tutorial/unit4/unit4.doc M /actr6/tutorial/unit5/grouped.lisp M /actr6/tutorial/unit5/unit5.doc ... units later today. This is updates to the remaining unit texts and the grouped recall model (something had changed such that the seed provided didn't produce the desird results). ------------------------------------------------------------------------ r185 | db30 | 2006-01-16 16:28:23 -0500 (Mon, 16 Jan 2006) | 1 line Changed paths: M /actr6/devices/virtual/device.lisp M /actr6/tutorial/unit1/unit1.doc M /actr6/tutorial/unit2/unit2.doc M /actr6/tutorial/unit3/unit3.doc Update to the virtual window device to be more consistent across Lisps. I discovered that the ordering of the subviews in a virtual-window can vary, which makes the tutorial traces not always line up (even with the seed set). I've made a change to the build-features-for on virtual-windows so that it sorts the icon-features based on xy for now so that things are more consistent. I've also made some changes to the unit texts because the traces in them were a little out of date with respect to the copied chunks naming convention. I'll be updating the rest of the ------------------------------------------------------------------------ r184 | db30 | 2006-01-13 17:00:25 -0500 (Fri, 13 Jan 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp The last commit should read 'Fixed an issue in the parameter handling of the audio module that caused :tone-detect-delay settings to be ignored. ------------------------------------------------------------------------ r183 | db30 | 2006-01-13 16:53:08 -0500 (Fri, 13 Jan 2006) | 1 line Changed paths: M /actr6/core-modules/audio.lisp Fixed an issue in the parameter handling of the audio module that :tone-recode-delay in the ------------------------------------------------------------------------ r182 | db30 | 2006-01-05 12:57:58 -0500 (Thu, 05 Jan 2006) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Sent the last commit before I had saved the comments in the load-act-r-6.lisp file... ------------------------------------------------------------------------ r181 | db30 | 2006-01-05 12:54:26 -0500 (Thu, 05 Jan 2006) | 1 line Changed paths: M /actr6/load-act-r-6.lisp Updated the main loader so that it can be loaded into CMUCL under OS X, but the environment won't work there because the multiprocessing functionality of CMUCL is only available in the x86 versions. So, it'll be command line only, but should work. It also seems to be able to load the precompiled declarative file so either that is working now or it's specific to the x86 port. ------------------------------------------------------------------------ r180 | db30 | 2006-01-04 13:27:59 -0500 (Wed, 04 Jan 2006) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp M /actr6/framework/chunks.lisp M /actr6/framework/vision-categorization.lisp Update of the extencd-{chunk/production} macros to remove the explicit call to compile. It now prints an uglier warning during the compiling of files that use those, but should be more stable/compatible overall. Also took a package declaration out of the mode line of the vision-categorization file that I hadn't caught before (since the files aren't packaged by default and may end up in different packages depending on the circumstances). ------------------------------------------------------------------------ r179 | db30 | 2005-12-22 17:04:21 -0500 (Thu, 22 Dec 2005) | 1 line Changed paths: M /actr6/commands/procedural-cmds.lisp M /actr6/core-modules/procedural.lisp M /actr6/modules/production-compilation.lisp M /actr6/modules/utility-and-reward.lisp Functionally this update shouldn't change anything, but internally the production utility code and all the spp related code have been moved to the utility-and-reward file. Also, production paramters are now created 'on the fly' like chunk parameters to make future changes easier. ------------------------------------------------------------------------ r178 | db30 | 2005-12-20 12:51:32 -0500 (Tue, 20 Dec 2005) | 1 line Changed paths: M /actr6/core-modules/procedural.lisp M /actr6/modules/production-compilation.lisp A /actr6/modules/utility-and-reward.lisp Added a new file to modules: utility-and-reward.lisp. The utility computation code was moved from procedural to that file and a new function is now available: trigger-reward. Full details are in the docs of that file, but basically it allows one to indicate a success or failure event for production parameter learning outside of the productions firing. ------------------------------------------------------------------------ r177 | db30 | 2005-12-16 13:22:33 -0500 (Fri, 16 Dec 2005) | 1 line Changed paths: M /actr6/core-modules/motor.lisp Added a new request to the motor module: +manual> isa prepare style