Definitions used in documentation


DRADIX = 10,000 : decimal radix
BRADIX = 32,768 : binary radix
DFIGURES=4 : 10 to the 4th power is DRADIX.
typedef unsigned int uint;
typedef unsigned long ulong;
typedef unsigned short fType; : assume 16 bits
maxSizeOfMemoryBlock = ((unsigned long)INT_MAX+1uL)/2 : corresponds to 4,294,967,296 digits
defaultMaxArraySize = uint( maxSizeOfMemoryBlock/(ulong)sizeof(FType) ) = 1,048,576;
maxArraySize : a private member of SNManager class which holds the maximum size of figure[]
minArraySize=4
crtWidth=80 : number of output characters per line
figure[] : fType array which is a private member of SNumber class
preferSpeed : a private member of SNManager class
rdxExp, fixedExp : a private member of SDouble class

enumerating constants defined in "snconst.h"
enum { NO = 0, YES = 1 };
enum { OFF = 0, ON = 1 };
enum { DISABLE = 0, ENABLE = 1};