File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4
4
#include " ../number_theory/modint.hpp"
5
5
#include " ../util/complex.hpp"
6
6
#include < algorithm>
7
- #include < complex>
8
7
#include < cassert>
9
8
#include < ranges>
10
9
#include < vector>
Original file line number Diff line number Diff line change 1
1
#ifndef CP_ALGO_NUMBER_THEORY_TWO_SQUARES_HPP
2
2
#define CP_ALGO_NUMBER_THEORY_TWO_SQUARES_HPP
3
3
#include " euler.hpp"
4
+ #include " ../util/complex.hpp"
4
5
#include < cassert>
5
- #include < complex>
6
6
#include < utility>
7
7
#include < vector>
8
8
#include < map>
9
9
namespace cp_algo ::math {
10
- using gaussint = std:: complex<int64_t >;
10
+ using gaussint = complex<int64_t >;
11
11
gaussint two_squares_prime_any (int64_t p) {
12
12
if (p == 2 ) {
13
13
return gaussint (1 , 1 );
Original file line number Diff line number Diff line change 2
2
#define CP_ALGO_UTIL_COMPLEX_HPP
3
3
#include < cmath>
4
4
namespace cp_algo {
5
+ // Custom implementation, since std::complex is UB on non-floating types
5
6
template <typename T>
6
7
struct complex {
7
8
using value_type = T;
You can’t perform that action at this time.
0 commit comments