1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#############################################################################
##
#A setup.g GUAVA library Reinald Baart
#A &Jasper Cramwinckel
#A &Erik Roijackers
##
## This file sets some startup variables
##
if not IsBound( InfoCoveringRadius ) then InfoCoveringRadius := Print; fi;
if not IsBound( InfoMinimumDistance ) then InfoMinimumDistance := Ignore; fi;
if not IsBound( CRMemSize ) then CRMemSize := 2^15; fi;
#############################################################################
##
#V GUAVA_TEMP_VAR . . . . . . . . variable for interfacing external programs
##
GUAVA_TEMP_VAR := 0;
#############################################################################
##
#V GUAVA_BOUNDS_TABLE . . . . . . . . . contains a list of tables of bounds
##
GUAVA_BOUNDS_TABLE := [ [], [] ];
#############################################################################
##
#V GUAVA_REF_LIST . . . contains a record of references for bounds on codes
##
GUAVA_REF_LIST := rec();
|