Skip to content

Commit

Permalink
Use relative paths in include
Browse files Browse the repository at this point in the history
  • Loading branch information
adamant-pwn committed Nov 21, 2024
1 parent 3e6a57a commit c7aba2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions cp-algo/geometry/point.hpp
Original file line number Diff line number Diff line change
@@ -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 <iostream>
namespace cp_algo::geometry {
template<typename ftype>
Expand Down
4 changes: 2 additions & 2 deletions cp-algo/math/fft.hpp
Original file line number Diff line number Diff line change
@@ -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 <algorithm>
#include <complex>
#include <cassert>
Expand Down
2 changes: 1 addition & 1 deletion cp-algo/structures/bit_array.hpp
Original file line number Diff line number Diff line change
@@ -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<size_t N, typename Uint = uint64_t>
struct bit_array {
Expand Down

0 comments on commit c7aba2b

Please sign in to comment.