We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e235b commit f9e81b5Copy full SHA for f9e81b5
verify/poly/wildcard.test.cpp
@@ -23,8 +23,8 @@ void semicorr(auto &a, auto &b) {
23
24
auto is_integer(auto a) {
25
static const double eps = 1e-8;
26
- return fft::abs(imag(a)) < eps
27
- && fft::abs(real(a) - fft::round(real(a))) < eps;
+ return cp_algo::abs(imag(a)) < eps
+ && cp_algo::abs(real(a) - cp_algo::round(real(a))) < eps;
28
}
29
30
string matches(string const& A, string const& B, char wild = '*') {
0 commit comments