]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/perf/strsrchperf/strsrchperf.h
ICU-531.30.tar.gz
[apple/icu.git] / icuSources / test / perf / strsrchperf / strsrchperf.h
index 3c012793987a7cd6ba270f7809c2796e82a7e6b0..a68ab3a1b06486b5a88cf8296db847e067fec0b3 100644 (file)
@@ -1,12 +1,11 @@
 /********************************************************************
  * COPYRIGHT:
- * Copyright (C) 2008 IBM, Inc.   All Rights Reserved.
+ * Copyright (C) 2008-2012 IBM, Inc.   All Rights Reserved.
  *
  ********************************************************************/
 #ifndef _STRSRCHPERF_H
 #define _STRSRCHPERF_H
 
-#include "unicode/ubrk.h"
 #include "unicode/usearch.h"
 #include "unicode/uperf.h"
 #include <stdlib.h>
@@ -29,7 +28,7 @@ public:
     }
     
     virtual long getOperationsPerIteration() {
-        return (long)(srcLen/pttrnLen);
+        return (long) srcLen;
     }
     
     StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) {
@@ -54,11 +53,11 @@ public:
     StringSearchPerformanceTest(int32_t argc, const char *argv[], UErrorCode &status);
     ~StringSearchPerformanceTest();
     virtual UPerfFunction* runIndexedTest(int32_t index, UBool exec, const char *&name, char *par = NULL);
-    
     UPerfFunction* Test_ICU_Forward_Search();
     UPerfFunction* Test_ICU_Backward_Search();
 };
 
+
 void ICUForwardSearch(UStringSearch *srch, const UChar* source, int32_t sourceLen, const UChar* pattern, int32_t patternLen, UErrorCode* status) {
     int32_t match;