Skip to content

Commit

Permalink
try avoiding line wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
oToToT authored Nov 1, 2023
1 parent dfc2518 commit 9d06e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codes/Math/FPS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Poly Sx(Poly A) {
return A;
}
Poly Ln(const Poly &A) { // coef[0] == 1; res[0] == 0
auto B = Sx(Mul(Dx(A), Inv(A), bit_ceil(A.size() * 2)));
auto B = Sx(Mul(Dx(A), Inv(A), bit_ceil(A.size()*2)));
return B.resize(A.size()), B;
}
Poly Exp(const Poly &v) { // coef[0] == 0; res[0] == 1
Expand Down

0 comments on commit 9d06e56

Please sign in to comment.