From c7aba2b7120948b74c648d4adfc59fe6fabd4362 Mon Sep 17 00:00:00 2001 From: Oleksandr Kulkov Date: Thu, 21 Nov 2024 03:02:51 +0100 Subject: [PATCH] Use relative paths in include --- cp-algo/geometry/point.hpp | 3 +-- cp-algo/math/fft.hpp | 4 ++-- cp-algo/structures/bit_array.hpp | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/cp-algo/geometry/point.hpp b/cp-algo/geometry/point.hpp index da1c585..a7dac6c 100644 --- a/cp-algo/geometry/point.hpp +++ b/cp-algo/geometry/point.hpp @@ -1,7 +1,6 @@ #ifndef CP_ALGO_GEOMETRY_POINT_HPP #define CP_ALGO_GEOMETRY_POINT_HPP -#include "cp-algo/util/complex.hpp" -#include "cp-algo/random/rng.hpp" +#include "../util/complex.hpp" #include namespace cp_algo::geometry { template diff --git a/cp-algo/math/fft.hpp b/cp-algo/math/fft.hpp index 6e5a5fe..71f58b1 100644 --- a/cp-algo/math/fft.hpp +++ b/cp-algo/math/fft.hpp @@ -1,8 +1,8 @@ #ifndef CP_ALGO_MATH_FFT_HPP #define CP_ALGO_MATH_FFT_HPP #include "common.hpp" -#include "cp-algo/number_theory/modint.hpp" -#include "cp-algo/util/complex.hpp" +#include "../number_theory/modint.hpp" +#include "../util/complex.hpp" #include #include #include diff --git a/cp-algo/structures/bit_array.hpp b/cp-algo/structures/bit_array.hpp index 29a56c0..0d6c692 100644 --- a/cp-algo/structures/bit_array.hpp +++ b/cp-algo/structures/bit_array.hpp @@ -1,6 +1,6 @@ #ifndef CP_ALGO_STRUCTURES_BIT_ARRAY_HPP #define CP_ALGO_STRUCTURES_BIT_ARRAY_HPP -#include "cp-algo/util/bit.hpp" +#include "../util/bit.hpp" namespace cp_algo::structures { template struct bit_array {