summaryrefslogtreecommitdiff
path: root/nmglobal.h
diff options
context:
space:
mode:
Diffstat (limited to 'nmglobal.h')
-rw-r--r--nmglobal.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/nmglobal.h b/nmglobal.h
index cd49cad..85f030b 100644
--- a/nmglobal.h
+++ b/nmglobal.h
@@ -62,40 +62,8 @@ typedef struct {
double results; /* Results */
} IDEAStruct;
-
-/************************
-** HUFFMAN COMPRESSION **
-************************/
-
-/*
-** DEFINES
-*/
-/*
-** MAXHUFFLOOPS
-**
-** This constant specifies the maximum number of Huffman
-** compression loops the system will try for. This keeps
-** the test from going off into the weeds. This is not
-** a critical constant, and can be increased if your
-** system is a real barn-burner.
-*/
-/*#define MAXHUFFLOOPS 50000L*/
-#define MAXHUFFLOOPS 500000L
-
-/*
-** Following constant sets the size of the arrays to
-** be compressed/uncompressed.
-*/
-#define HUFFARRAYSIZE 5000L
-
-/*
-** TYPEDEFS
-*/
-
typedef struct {
double results; /* Results */
- unsigned long arraysize; /* Size of array */
- unsigned long loops; /* # of times to compress/decompress */
} HuffStruct;
/********************************