Skip to content

Commit 094f2a7

Browse files
committed
Factor out complex type
1 parent ffd4bdd commit 094f2a7

File tree

5 files changed

+55
-14
lines changed

5 files changed

+55
-14
lines changed

cp-algo/geometry/closest_pair.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ namespace cp_algo::geometry {
2121
}
2222
}
2323
}
24-
std::map<point, std::vector<int>> neigs;
25-
md = ceil(sqrtl(md));
24+
std::map<point, std::vector<size_t>> neigs;
25+
md = (int64_t)ceil(sqrt((double)md));
2626
for(size_t i = 0; i < n; i++) {
2727
neigs[r[i] / md].push_back(i);
2828
}

cp-algo/geometry/point.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#ifndef CP_ALGO_GEOMETRY_POINT_HPP
22
#define CP_ALGO_GEOMETRY_POINT_HPP
3-
#include "../random/rng.hpp"
3+
#include "cp-algo/util/complex.hpp"
4+
#include "cp-algo/random/rng.hpp"
45
#include <iostream>
5-
#include <complex>
66
namespace cp_algo::geometry {
77
template<typename ftype>
8-
struct point_t: public std::complex<ftype> {
9-
using Base = std::complex<ftype>;
8+
struct point_t: complex<ftype> {
9+
using Base = complex<ftype>;
1010
using Base::Base;
1111

1212
point_t(Base const& t): Base(t) {}

cp-algo/math/fft.hpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
#ifndef CP_ALGO_MATH_FFT_HPP
22
#define CP_ALGO_MATH_FFT_HPP
33
#include "common.hpp"
4-
#include "../number_theory/modint.hpp"
4+
#include "cp-algo/number_theory/modint.hpp"
5+
#include "cp-algo/util/complex.hpp"
56
#include <algorithm>
67
#include <complex>
78
#include <cassert>
89
#include <ranges>
910
#include <vector>
1011
#include <bit>
1112
#include <experimental/simd>
12-
1313
namespace cp_algo::math::fft {
1414
using ftype = double;
15-
using point = std::complex<ftype>;
15+
using point = complex<ftype>;
1616
using vftype = std::experimental::native_simd<ftype>;
17-
using vpoint = std::complex<vftype>;
17+
using vpoint = complex<vftype>;
1818
static constexpr size_t flen = vftype::size();
1919

2020

@@ -74,7 +74,7 @@ namespace cp_algo::math::fft {
7474
} else {
7575
auto arg = std::numbers::pi / (ftype)n;
7676
if constexpr(std::is_same_v<pt, point>) {
77-
return {(ftype)cos(k * arg), (ftype)sin(k * arg)};
77+
return {cos((ftype)k * arg), sin((ftype)k * arg)};
7878
} else {
7979
return pt{vftype{[&](auto i) {return cos(ftype(k + i) * arg);}},
8080
vftype{[&](auto i) {return sin(ftype(k + i) * arg);}}};
@@ -140,11 +140,11 @@ namespace cp_algo::math::fft {
140140
const cvector cvector::roots = []() {
141141
cvector res(pre_roots);
142142
for(size_t n = 1; n < res.size(); n *= 2) {
143-
auto base = std::polar(1., std::numbers::pi / (ftype)n);
143+
auto base = polar<ftype>(1., std::numbers::pi / (ftype)n);
144144
point cur = 1;
145145
for(size_t k = 0; k < n; k++) {
146146
if((k & 15) == 0) {
147-
cur = std::polar(1., std::numbers::pi * (ftype)k / (ftype)n);
147+
cur = polar<ftype>(1., std::numbers::pi * (ftype)k / (ftype)n);
148148
}
149149
res.set(n + k, cur);
150150
cur *= base;

cp-algo/number_theory/modint.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ namespace cp_algo::math {
145145
static void switch_mod(Int nm) {
146146
m = nm;
147147
im = m % 2 ? inv2(-m) : 0;
148-
r2 = (typename Base::UInt2)(-1) % m + 1;
148+
r2 = static_cast<Base::UInt>(static_cast<Base::UInt2>(-1) % m + 1);
149149
}
150150

151151
// Wrapper for temp switching

cp-algo/util/complex.hpp

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#ifndef CP_ALGO_UTIL_COMPLEX_HPP
2+
#define CP_ALGO_UTIL_COMPLEX_HPP
3+
#include <cmath>
4+
namespace cp_algo {
5+
template<typename T>
6+
struct complex {
7+
T x, y;
8+
constexpr complex() {}
9+
constexpr complex(T x): x(x), y(0) {}
10+
constexpr complex(T x, T y): x(x), y(y) {}
11+
complex& operator *= (T t) {x *= t; y *= t; return *this;}
12+
complex& operator /= (T t) {x /= t; y /= t; return *this;}
13+
complex operator * (T t) const {return complex(*this) *= t;}
14+
complex operator / (T t) const {return complex(*this) /= t;}
15+
complex& operator += (complex t) {x += t.x; y += t.y; return *this;}
16+
complex& operator -= (complex t) {x -= t.x; y -= t.y; return *this;}
17+
complex operator * (complex t) const {return {x * t.x - y * t.y, x * t.y + y * t.x};}
18+
complex operator / (complex t) const {return *this * t.conj() / t.norm();}
19+
complex operator + (complex t) const {return complex(*this) += t;}
20+
complex operator - (complex t) const {return complex(*this) -= t;}
21+
complex& operator *= (complex t) {return *this = *this * t;}
22+
complex& operator /= (complex t) {return *this = *this / t;}
23+
complex operator - () const {return {-x, -y};}
24+
complex conj() const {return {x, -y};}
25+
T norm() const {return x * x + y * y;}
26+
T abs() const {return std::sqrt(norm());}
27+
T real() const {return x;}
28+
T imag() const {return y;}
29+
static complex polar(T r, T theta) {return {r * std::cos(theta), r * std::sin(theta)};}
30+
auto operator <=> (complex const& t) const = default;
31+
};
32+
template<typename T>
33+
complex<T> operator * (auto x, complex<T> y) {return y * x;}
34+
template<typename T> complex<T> conj(complex<T> x) {return x.conj();}
35+
template<typename T> T norm(complex<T> x) {return x.norm();}
36+
template<typename T> T abs(complex<T> x) {return x.abs();}
37+
template<typename T> T real(complex<T> x) {return x.real();}
38+
template<typename T> T imag(complex<T> x) {return x.imag();}
39+
template<typename T> complex<T> polar(T r, T theta) {return complex<T>::polar(r, theta);}
40+
}
41+
#endif // CP_ALGO_UTIL_COMPLEX_HPP

0 commit comments

Comments
 (0)