Remove unused includes.
[novacoin.git] / src / kernel_worker.h
index 63217b9..93ee62c 100644 (file)
@@ -1,5 +1,7 @@
-#ifndef BITCOIN_HERNELWORKER_H
-#define BITCOIN_HERNELWORKER_H
+#ifndef NOVACOIN_KERNELWORKER_H
+#define NOVACOIN_KERNELWORKER_H
+
+#include <vector>
 
 class KernelWorker
 {
@@ -8,24 +10,16 @@ public:
     { }
     KernelWorker(unsigned char *kernel, uint32_t nBits, uint32_t nInputTxTime, int64_t nValueIn, uint32_t nIntervalBegin, uint32_t nIntervalEnd);
     void Do();
-    vector<std::pair<uint256,uint32_t> >& GetSolutions();
+    std::vector<std::pair<uint256,uint32_t> >& GetSolutions();
 
 private:
-#ifdef USE_ASM
-#ifdef __x86_64__
-    // AVX2 CPUs: 8-way hashing.
-    void Do_8way();
-#endif
-    // SSE2, Neon: 4-way hashing.
-    void Do_4way();
-#endif
     // One way hashing.
     void Do_generic();
 
     // Kernel solutions.
     std::vector<std::pair<uint256,uint32_t> > solutions;
 
-    // Kernel metadaya
+    // Kernel metadata.
     uint8_t *kernel;
     uint32_t nBits;
     uint32_t nInputTxTime;
@@ -36,4 +30,7 @@ private:
     uint32_t nIntervalEnd;
 };
 
-#endif
+// Scan given kernel for solutions
+bool ScanKernelBackward(unsigned char *kernel, uint32_t nBits, uint32_t nInputTxTime, int64_t nValueIn, std::pair<uint32_t, uint32_t> &SearchInterval, std::pair<uint256, uint32_t> &solution);
+
+#endif // NOVACOIN_KERNELWORKER_H
\ No newline at end of file