Home Online Manual
Top
Back: getCommand
Forward: getResult
FastBack: resources_lib
FastForward: derham_lib
Up: tasks_lib
Top: Singular Manual
Contents: Table of Contents
Index: Index
About: About this document

D.15.20.12 getArguments

Procedure from library tasks.lib (see tasks_lib).

Usage:
getArguments(t), t task

Return:
a list, the arguments of t.

Note:
This command cannot be applied to tasks whose state is
'uninitialized'.

Example:
 
LIB "tasks.lib";
ring R = 0, (x,y), dp;
ideal I = x9y2+x10, x2y7-y8;
task t = "std", list(I);
getArguments(t);
==> [1]:
==>    _[1]=x9y2+x10
==>    _[2]=x2y7-y8
killTask(t);
See also: createTask; getCommand; getResult; getState; printTask.