up previous next
5.1.1 Introduction to Panels
|
***** NOT YET UPDATED TO CoCoA-5: follow with care *****
The user can customize some features of CoCoA by setting (or
unsetting) some boolean options (ON/OFF) which are grouped in three
panels. The function
Panels
returns the list of panel names, and
the settings in a particular panel can be seen using the function
Panel
as illustrated in the example below.
Panels();
["GENERAL", "GROEBNER"]
-------------------------------
Panel(GENERAL);
Echo............... : False
Timer.............. : False
Trace.............. : False
Indentation........ : False
TraceSources....... : False
SuppressWarnings... : False
ComputationStack... : False
-------------------------------
|