-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolver.h
65 lines (54 loc) · 1.97 KB
/
solver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*Code by Dmitry Khovratovich, 2016
CC0 license
*/
#ifndef EQUIHASH_SOLVER_H
#define EQUIHASH_SOLVER_H
#include <cstdint>
#include <utility>
#include <vector>
#include <cstdio>
#include "proof.h"
namespace _POW{
const int MAX_NONCE = 0xFFFFF; // максимальне значення nonce
// визначення службового класу Tuple
class Tuple {
public:
std::vector<uint32_t> blocks;
Integer reference;
Tuple(unsigned i){ blocks.resize(i); reference = 0;}
Tuple& operator=(const Tuple &r) {
blocks = r.blocks;
reference = r.reference;
return *this;
}
};
// визначення службового класу Fork
class Fork {
public:
Integer ref1, ref2;
Fork(): ref1(0), ref2(0){};
Fork(Integer r1, Integer r2) : ref1(r1), ref2(r2) {};
};
// визначення класу алгоритму, який знаходить Proof
// припускається, що n/(k+1) <=32
class Solver{
Input input;
std::vector<std::vector<Tuple>> tupleList;
std::vector<unsigned> filledList;
std::vector<Proof> solutions;
std::vector<std::vector<Fork>> forks;
Nonce nonce;
Nonce shift;
public:
Solver(Input in): input(std::move(in)), nonce(0) {};
~Solver() {};
void AllocateMemory(); // Виділяє пам'ять для подальшого використання
void FillMemory(Integer length); // Заповнює пам'ять значеннями хеш функції
void InitMemory(Integer length); // Виконує повну ініціалізацію пам'яті та вимірює час виконання
void ResolveCollisions(bool store);
std::vector<Integer> ResolveTree(Fork fork);
std::vector<Integer> ResolveTreeByLevel(Fork fork, unsigned level);
Proof FindProof();
};
}
#endif //define EQUIHASH_SOLVER_H