Skip to content

Commit f63041a

Browse files
committed
don't use std::complex
1 parent 1b4774f commit f63041a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cp-algo/math/fft.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#include "../number_theory/modint.hpp"
55
#include "../util/complex.hpp"
66
#include <algorithm>
7-
#include <complex>
87
#include <cassert>
98
#include <ranges>
109
#include <vector>

cp-algo/number_theory/two_squares.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#ifndef CP_ALGO_NUMBER_THEORY_TWO_SQUARES_HPP
22
#define CP_ALGO_NUMBER_THEORY_TWO_SQUARES_HPP
33
#include "euler.hpp"
4+
#include "../util/complex.hpp"
45
#include <cassert>
5-
#include <complex>
66
#include <utility>
77
#include <vector>
88
#include <map>
99
namespace cp_algo::math {
10-
using gaussint = std::complex<int64_t>;
10+
using gaussint = complex<int64_t>;
1111
gaussint two_squares_prime_any(int64_t p) {
1212
if(p == 2) {
1313
return gaussint(1, 1);

cp-algo/util/complex.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#define CP_ALGO_UTIL_COMPLEX_HPP
33
#include <cmath>
44
namespace cp_algo {
5+
// Custom implementation, since std::complex is UB on non-floating types
56
template<typename T>
67
struct complex {
78
using value_type = T;

0 commit comments

Comments
 (0)