Auto merge of #1260 - str4d:1175-byte-array-manipulation, r=ebfull

Update Equihash implementation to match the Zcash spec

Closes #1175
This commit is contained in:
zkbot
2016-08-24 03:01:13 +00:00
15 changed files with 537 additions and 306 deletions

View File

@@ -121,7 +121,7 @@ double benchmark_solve_equihash(bool time)
timer_start();
std::set<std::vector<unsigned int>> solns;
EhOptimisedSolveUncancellable(n, k, eh_state,
[](std::vector<eh_index> soln) { return false; });
[](std::vector<unsigned char> soln) { return false; });
if (time)
return timer_stop();
else