aboutsummaryrefslogtreecommitdiff
path: root/bigint.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-10-08 11:58:59 +0200
committertomsmeding <tom.smeding@gmail.com>2016-10-08 11:58:59 +0200
commitddeae250bc6661daafb25ae07f8c2e01b53b0d44 (patch)
tree6d5c3854cb9a933c54299192bb841c67d358bb80 /bigint.h
parent9064811c32218ee1a4adbdb3431d747836bd9bdf (diff)
Improve bigint division depth estimate
Diffstat (limited to 'bigint.h')
-rw-r--r--bigint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bigint.h b/bigint.h
index 4d6c980..02f3da3 100644
--- a/bigint.h
+++ b/bigint.h
@@ -26,7 +26,7 @@ private:
void normalise();
void checkconsistent();
- std::pair<Bigint,Bigint> divmod(const Bigint&,int depth) const;
+ std::pair<Bigint,Bigint> divmod(const Bigint&,int depth,int maxdepth) const;
public:
Bigint();