summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-13 21:22:39 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-13 21:22:39 +0000
commit9631ec05f6ddc60b231e5fad280e5a5242c5bab3 (patch)
tree81b5d14f0c90997b1637027a6a7c6ca55d55e222
parent113c4ba4d6780449afd4681e56b6aba07908402f (diff)
-- fix tests. For some reason commenting out a prototype or two in nbench1.h killed all the tests
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@16 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
-rw-r--r--nbench1.h84
1 files changed, 0 insertions, 84 deletions
diff --git a/nbench1.h b/nbench1.h
index 6d0f63a..a892043 100644
--- a/nbench1.h
+++ b/nbench1.h
@@ -45,10 +45,7 @@ extern HuffStruct global_huffstruct;
extern NNetStruct global_nnetstruct;
extern LUStruct global_lustruct;
-#if 0
/* External PROTOTYPES */
-/*extern unsigned long abs_randwc(unsigned long num);*/ /* From MISC */
-/*extern long randnum(long lngval);*/
extern int32_t randwc(int32_t num);
extern uint32_t abs_randwc(uint32_t num);
extern int32_t randnum(int32_t lngval);
@@ -64,84 +61,3 @@ extern unsigned long StartStopwatch();
extern unsigned long StopStopwatch(unsigned long startticks);
extern unsigned long TicksToSecs(unsigned long tickamount);
extern double TicksToFracSecs(unsigned long tickamount);
-/*****************
-** NUMERIC SORT **
-*****************/
-
-/*
-** PROTOTYPES
-*/
-void DoNumSort(void);
-
-/****************
-** STRING SORT **
-*****************
-*/
-
-
-/*
-** PROTOTYPES
-*/
-void DoStringSort(void);
-
-/************************
-** BITFIELD OPERATIONS **
-*************************
-*/
-
-/*
-** PROTOTYPES
-*/
-void DoBitops(void);
-
-/****************************
-** EMULATED FLOATING POINT **
-****************************/
-
-/*
-** PROTOTYPES
-*/
-void DoEmFloat(void);
-
-
-/*************************
-** FOURIER COEFFICIENTS **
-*************************/
-
-/*
-** PROTOTYPES
-*/
-void DoFourier(void);
-
-/*************************
-** ASSIGNMENT ALGORITHM **
-*************************/
-
-void DoAssign(void);
-
-/********************
-** IDEA ENCRYPTION **
-********************/
-
-void DoIDEA(void);
-
-/************************
-** HUFFMAN COMPRESSION **
-************************/
-
-void DoHuffman(void);
-
-
-/********************************
-** BACK PROPAGATION NEURAL NET **
-********************************/
-
-void DoNNET(void);
-
-/***********************
-** LU DECOMPOSITION **
-** (Linear Equations) **
-***********************/
-
-void DoLU(void);
-#endif