Skip to content

Commit

Permalink
Updates for new SVS feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
garfieldnate committed Jun 26, 2024
1 parent 3d92803 commit 3f5f1ef
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ManualSource/svs.tex
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ \section{The scene graph}

Each state in working memory has its own scene graph.
When a new state is created, it will receive an independent copy of its parent's scene graph.
This is useful for performing look-ahead search, as it allows the agent to destructively modify the scene graph in a search state using mental imagery operations.
This is useful for performing look-ahead search, as it allows the agent to destructively modify the scene graph in a search state using mental imagery operations. If you wish to turn off the scene graph copying behavior, you can disable it with \soar{svs --disable-in-substates}. You can also re-enable it with \soar{svs --enable-in-substates}.


% ----------------------------------------------------------------------------
Expand Down
15 changes: 10 additions & 5 deletions txt/Release_Notes_9.6.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,21 @@ This release of Soar includes TODO: summary here

## New Features

* TODO header
* TODO line item
* TODO line item
* Visual-Soar improvements (thanks to amnuxoll)
* TODO

* You can pip-install Soar! (thanks to ShadowJonathan)
* `pip install soar-sml[compat]` is a drop-in replacement for manually installing Soar somewhere and adding its path to your PYTHONPATH environment variable.
* Note that this does not come with the debugger or other Java applications.
* New svs commands `--disable-in-substates` and `--enable-in-substates`. By default SVS copies the entire scene graph into each substate. This can be disabled with `--disable-in-substates` to save memory and improve performance. This can be re-enabled with `--enable-in-substates` if you need to access the scene graph in substates.

## Other Changes

* Bug fixes
* TODO
* Improved Java Debugger stability when adding/removing multiple agents during an application lifetime
* SVS can no longer be disabled when the current state is a subgoal. Allowing this previously led to undefined behavior.

* VisualSoar bug fixes (thanks to amnuxoll):
* Visual-Soar bug fixes (thanks to amnuxoll):
* TODO

* Infrastructure improvements
Expand Down

0 comments on commit 3f5f1ef

Please sign in to comment.