Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

Latest commit

 

History

History
48 lines (32 loc) · 1.13 KB

cmd_select.wiki

File metadata and controls

48 lines (32 loc) · 1.13 KB

  1. summary select command documentation

Table of Contents

select

Force the next selected operator

Synopsis

Options

If no "id" is supplied, currently "select"ed operator (if applicable) is displayed

|| `id` || case-insensitive operator id of the operator to be selected in the next decision phase ||

Description

The select command will force the selection of an operator, whose id is supplied as an argument, during the next decision phase. If the argument is not a proposed operator in the next decision phase, an error is raised and operator selection proceeds as if the select command had not been called. Otherwise, the supplied operator will be selected as the next operator, regardless of preferences. If select is called with no id argument, the command returns the operator id currently forced for selection (by a previous call to select), if one exists.

Examples

Assuming operator "O2" is a valid operator, this would select it as the next operator to be selected:

After this command, issuing just "select" will get "O2" as a return:

See Also

[cmd_predict]