summaryrefslogtreecommitdiff
path: root/nmglobal.h
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-14 23:03:36 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-14 23:03:36 +0000
commit34edabbf495e0222c59937973ab2bfecc8e32dd6 (patch)
treecb3f1660f1fdac73e1f7281d25cb35b68a7db1aa /nmglobal.h
parent7225b0865e8c7697fce69224640142374b22364d (diff)
Remove adjust struct member in favor of a local static variable
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@44 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'nmglobal.h')
-rw-r--r--nmglobal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/nmglobal.h b/nmglobal.h
index 7333ca4..2f1018d 100644
--- a/nmglobal.h
+++ b/nmglobal.h
@@ -66,7 +66,6 @@
*/
typedef struct {
double results; /* # of sort iterations per sec */
- int adjust; /* Set adjust code */
unsigned long arraysize; /* # of elements in array */
} SortStruct;
@@ -112,7 +111,6 @@ typedef struct {
*/
typedef struct {
double results; /* # of bitfield ops per sec */
- int adjust; /* Set adjust code */
unsigned long bitoparraysize; /* Total # of bitfield ops */
unsigned long bitfieldarraysize; /* Bit field array size */
} BitOpStruct;
@@ -145,7 +143,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
unsigned long arraysize; /* Size of array */
unsigned long loops; /* Loops per iterations */
} EmFloatStruct;
@@ -159,7 +156,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
unsigned long arraysize; /* Size of coeff. arrays */
} FourierStruct;
@@ -172,7 +168,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
} AssignStruct;
/********************
@@ -200,7 +195,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
unsigned long arraysize; /* Size of array */
unsigned long loops; /* # of times to convert */
} IDEAStruct;
@@ -237,7 +231,6 @@ typedef struct {
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
unsigned long arraysize; /* Size of array */
unsigned long loops; /* # of times to compress/decompress */
} HuffStruct;
@@ -262,7 +255,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
unsigned long loops; /* # of times to learn */
} NNetStruct;
@@ -287,7 +279,6 @@ typedef struct {
*/
typedef struct {
double results; /* Results */
- int adjust; /* Set adjust code */
} LUStruct;
extern SortStruct global_numsortstruct;