Skip to content

Commit 6ca9904

Browse files
committed
remove old comments
1 parent 08a9707 commit 6ca9904

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

library/trees/uncommon/ladder_decomposition.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ struct ladder {
1616
int n;
1717
vi d, p, idx, l;
1818
vector<vi> jmp;
19-
//! @param g forest (rooted or unrooted)
20-
//! @time O(n log n)
21-
//! @space O(n log n) for jmp. Everything else is O(n)
2219
ladder(const auto& g):
2320
n(sz(g)), d(n), p(n), idx(n), l(2 * n) {
2421
int i = 0;

0 commit comments

Comments
 (0)