Skip to content

Commit a2cd3f6

Browse files
committed
Delete unused variable
1 parent 02adf49 commit a2cd3f6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/utils/math.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ std::vector<int> factors(int m) {
1818

1919
bool is_primitive_root(int m, int g) {
2020
assert(1 <= g && g < m);
21-
auto prs = factors(m - 1);
2221
for (int x : factors(m - 1)) {
2322
if (atcoder::internal::pow_mod_constexpr(g, (m - 1) / x, m) == 1) return false;
2423
}

0 commit comments

Comments
 (0)