This command creates new Soar interpreters identified by given names. The various options specify any special initialization conditions, if any. The most important option is the type which indicates what type of interpreter is to be created and must be one of the following values:
One or more names may be given after the above types. If no type is given on the command line when Soar is invoked, a single -agent interpreter is created with the name soar. Within Soar, it is an error to call this command without specifying some interpreter name to create.
Once the Soar system has started, the command create-interp can be used to add additional interpreters.
The following example starts Soar with two agents named fred and wilma and a single tclsh interpreter named bedrock. This setup might be used to run a simulator in the tclsh interpreter bedrock that the agents fred and wilma can interact in.
soar -agent fred wilma -tclsh bedrock
This example has the extra option -foo bar. Since this is not recognized as a valid command line option, it is passed on to each interpreter defined on the command line. This information appears in the Tcl variable argv and can be used to pass startup information to user-defined Tcl procedures.
soar -foo bar -agent fred wilma -wish bedrock