list_variables
Retrieve a list of all variables that have been created in the current session. Useful for tracking defined variables before adding constraints.
Instructions
List all created variables.
Returns: A dictionary containing a list of all variable references.
Example: >>> create_int_var("x") 'int:x' >>> create_bool_var("flag") 'bool:flag' >>> list_variables() {'variables': ['int:x', 'bool:flag']}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||