NAME

chunk-free-problem-spaces - Manage chunk-free Soar problem spaces

SYNOPSIS

chunk-free-problem-spaces [-add spacename | -remove spacename]

DESCRIPTION

A chunk is a production that is learned by Soar. Some problem spaces are complex enough that learning chunks produces unsatisfactory results. In these spaces, learning can be disabled by declaring the problem space to be free of chunks.

This command manages the chunk-free Soar problem spaces. With no arguments, this command prints the current list of problem spaces declared chunk-free. With arguments, it adds or removes a given problem space from the chunk-free problem space list. No chunks will be built in a problem space if that space is declared chunk-free.

OPTIONS

-add spacename
Add the spacename to the chunk-free problem space list. spacename must be a valid Soar symbol.
-remove spacename
Remove the spacename from the chunk-free problem space list. spacename must be present on the chunk-free problem space list.

The spacename must be the name of a Soar problem space.

EXAMPLES

This command declares my-space to be a chunk-free problem space:
chunk-free-problem-spaces -add my-space

This command removes my-space from the chunk-free problem space list enabling chunks to be built:

chunk-free-problem-spaces -remove my-space

SEE ALSO

learn, chunky-problem-space