Use left shift instead of floating-point pow() in equihash.
This commit is contained in:
@@ -16,7 +16,6 @@
|
|||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cmath>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
@@ -247,7 +246,7 @@ std::set<std::vector<eh_index>> Equihash::BasicSolve(const eh_HashState& base_st
|
|||||||
|
|
||||||
bool Equihash::IsValidSolution(const eh_HashState& base_state, std::vector<eh_index> soln)
|
bool Equihash::IsValidSolution(const eh_HashState& base_state, std::vector<eh_index> soln)
|
||||||
{
|
{
|
||||||
eh_index soln_size { pow(2, k) };
|
eh_index soln_size { 1u << k };
|
||||||
if (soln.size() != soln_size) {
|
if (soln.size() != soln_size) {
|
||||||
LogPrint("pow", "Invalid solution size: %d\n", soln.size());
|
LogPrint("pow", "Invalid solution size: %d\n", soln.size());
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user