Skip to content

Commit 9f2e492

Browse files
committed
Fix
1 parent 07bdb2e commit 9f2e492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cp-algo/math/poly/impl/euclid.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ namespace cp_algo::math::poly::impl {
7676
}
7777
template<typename poly>
7878
poly min_rec(poly const& p, size_t d) {
79-
auto R2 = p.mod_xk(d).reverse(d), R1 = poly::xk(d);
79+
auto R2 = p.mod_xk(d).reversed(d), R1 = poly::xk(d);
8080
if(R2.is_zero()) {
8181
return poly(1);
8282
}

0 commit comments

Comments
 (0)