aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-08-03 11:00:20 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-08-03 11:00:20 +0800
commitd0a6157074c14f3e31c7bee5d5c0ac67e26be853 (patch)
tree2cc5a23a56c6b5111d6c8afc6341ee6b0397e986
parent251f0ac1e373b9bc7459569d1e66fbe7b280911a (diff)
downloadtangerine-mcl-d0a6157074c14f3e31c7bee5d5c0ac67e26be853.tar.gz
tangerine-mcl-d0a6157074c14f3e31c7bee5d5c0ac67e26be853.tar.zst
tangerine-mcl-d0a6157074c14f3e31c7bee5d5c0ac67e26be853.zip
fix alias of divNM
-rw-r--r--include/mcl/vint.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mcl/vint.hpp b/include/mcl/vint.hpp
index 9ac7e3f..c99c531 100644
--- a/include/mcl/vint.hpp
+++ b/include/mcl/vint.hpp
@@ -765,7 +765,7 @@ void divNM(T *q, size_t qn, T *r, const T *x, size_t xn, const T *y, size_t yn)
clearN(t, qn);
t[0] = q0;
vint::shlN(t, t, 1, xb - w - yb);
- vint::addN(q, q, t, qn);
+ vint::addN(qq, qq, t, qn);
}
}
#else