Skip to content

Commit f9e81b5

Browse files
committed
fix
1 parent a6e235b commit f9e81b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

verify/poly/wildcard.test.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ void semicorr(auto &a, auto &b) {
2323

2424
auto is_integer(auto a) {
2525
static const double eps = 1e-8;
26-
return fft::abs(imag(a)) < eps
27-
&& fft::abs(real(a) - fft::round(real(a))) < eps;
26+
return cp_algo::abs(imag(a)) < eps
27+
&& cp_algo::abs(real(a) - cp_algo::round(real(a))) < eps;
2828
}
2929

3030
string matches(string const& A, string const& B, char wild = '*') {

0 commit comments

Comments
 (0)