NAME

init-intepreter - Initialize Soar interpreter

SYNOPSIS

init-intepreter

DESCRIPTION

This command performs interpreter-specific initializations by scanning a list of directories to find an interpreter-specific initialization file. The list of directories are scanned to find a file matching the name of the interpreter with a ".soar" extension. Once found, the file is sourced to initialize the interpreter.

The list of directories to scan may be specified on the command line when Soar is started. The list of directories must be a sequence of paths separated by colons (:). If the path is not specified then the current directory and the user's home directory is searched (in that order).

This command is run automatically whenever an interpreter is created.

EXAMPLES

This alias might be found in a user's Csh startup file (.cshrc) to indicate that /usr/fred/interps and /usr/ifor/interps contain initialization files for all of Fred's interpreters and the IFOR project interpreters:

alias my-soar "tksoar -path /usr/fred/interps:/usr/ifor/interps"