Skip to content

Commit c7aba2b

Browse files
committed
Use relative paths in include
1 parent 3e6a57a commit c7aba2b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

cp-algo/geometry/point.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#ifndef CP_ALGO_GEOMETRY_POINT_HPP
22
#define CP_ALGO_GEOMETRY_POINT_HPP
3-
#include "cp-algo/util/complex.hpp"
4-
#include "cp-algo/random/rng.hpp"
3+
#include "../util/complex.hpp"
54
#include <iostream>
65
namespace cp_algo::geometry {
76
template<typename ftype>

cp-algo/math/fft.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#ifndef CP_ALGO_MATH_FFT_HPP
22
#define CP_ALGO_MATH_FFT_HPP
33
#include "common.hpp"
4-
#include "cp-algo/number_theory/modint.hpp"
5-
#include "cp-algo/util/complex.hpp"
4+
#include "../number_theory/modint.hpp"
5+
#include "../util/complex.hpp"
66
#include <algorithm>
77
#include <complex>
88
#include <cassert>

cp-algo/structures/bit_array.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef CP_ALGO_STRUCTURES_BIT_ARRAY_HPP
22
#define CP_ALGO_STRUCTURES_BIT_ARRAY_HPP
3-
#include "cp-algo/util/bit.hpp"
3+
#include "../util/bit.hpp"
44
namespace cp_algo::structures {
55
template<size_t N, typename Uint = uint64_t>
66
struct bit_array {

0 commit comments

Comments
 (0)