Skip to content

Commit ec07465

Browse files
committed
move include so it works on main branch
1 parent 63c5a61 commit ec07465

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

library/trees/extra_members/virtual_tree.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#include "../../monotonic_stack/monotonic_stack.hpp"
21
//! https://github.com/kth-competitive-programming/kactl/blob/main/content/graph/CompressTree.h
32
//! @code
43
//! vector<vi> adj(n);

library/trees/lca_rmq.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#pragma once
2+
#include "../../monotonic_stack/monotonic_stack.hpp"
23
#include "../../data_structures/rmq.hpp"
34
//! https://github.com/kth-competitive-programming/kactl/blob/main/content/graph/LCA.h
45
//! @code
@@ -39,5 +40,5 @@ struct LCA {
3940
#include "../extra_members/in_subtree.hpp"
4041
#include "../extra_members/on_path.hpp"
4142
#include "next_on_path.hpp"
42-
#include "../extra_members/compress_tree.hpp"
43+
#include "../extra_members/virtual_tree.hpp"
4344
};

0 commit comments

Comments
 (0)