diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-24 21:20:56 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-22 16:07:44 +0000 |
commit | 6f9ae5b6eb535fb748722ed1c81f981474422ead (patch) | |
tree | 7b566b2cdeea8f6043547748bde2c95b00f020ae /tests/performance_tests | |
parent | bulletproofs: maintain -z4, -z5, and -y0 to avoid subtractions (diff) | |
download | monero-6f9ae5b6eb535fb748722ed1c81f981474422ead.tar.xz |
multiexp: handle pippenger multiexps with part precalc
Diffstat (limited to 'tests/performance_tests')
-rw-r--r-- | tests/performance_tests/multiexp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/performance_tests/multiexp.h b/tests/performance_tests/multiexp.h index b8b87b3a6..b6e86ebd4 100644 --- a/tests/performance_tests/multiexp.h +++ b/tests/performance_tests/multiexp.h @@ -78,9 +78,9 @@ public: case multiexp_straus_cached: return res == straus(data, straus_cache); case multiexp_pippenger: - return res == pippenger(data, NULL, c); + return res == pippenger(data, NULL, 0, c); case multiexp_pippenger_cached: - return res == pippenger(data, pippenger_cache, c); + return res == pippenger(data, pippenger_cache, 0, c); default: return false; } |