From 69cccd197a4aa331647a02046e708396f6a13937 Mon Sep 17 00:00:00 2001 From: Gloria Mundi Date: Tue, 27 Feb 2024 16:12:35 +0100 Subject: rename inv to multInv to match usage sites --- math/shortModInv.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'math') diff --git a/math/shortModInv.cpp b/math/shortModInv.cpp index 747eb7a..d5eaf07 100644 --- a/math/shortModInv.cpp +++ b/math/shortModInv.cpp @@ -1,3 +1,3 @@ -ll inv(ll a, ll b){ // a^{-1} mod b - return 1 < a ? b - inv(b % a, a) * b / a : 1; -} \ No newline at end of file +ll multInv(ll a, ll b){ // a^{-1} mod b + return 1 < a ? b - multInv(b % a, a) * b / a : 1; +} -- cgit v1.2.3