Skip to content

Commit 569e6ea

Browse files
committed
use int as the default storage type for dynamic_modint
1 parent ddc6652 commit 569e6ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cp-algo/number_theory/modint.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ namespace cp_algo::math {
111111
auto getr() const {return Base::r;}
112112
};
113113

114-
template<typename Int = int64_t>
114+
template<typename Int = int>
115115
struct dynamic_modint: modint_base<dynamic_modint<Int>, Int> {
116116
using Base = modint_base<dynamic_modint<Int>, Int>;
117117
using Base::Base;

0 commit comments

Comments
 (0)