##// END OF EJS Templates
phases: avoid N² behavior in `advanceboundary`...
phases: avoid N² behavior in `advanceboundary` We allowed duplicated entries in the deque, which each entry could potentially insert all its ancestors. So advancing boundary for the full repository would mean each revision would walk all its ancestors, resulting in O(N²) iteration. For repository of any decent size, N² is quickly insane. We introduce a simple set to avoid this and get back to reasonable performance.

File last commit:

r46195:426294d0 default
r52398:c9ceb4f6 6.7 stable
Show More
rustfmt.toml
4 lines | 83 B | text/plain | TOMLLexer
Martin von Zweigbergk
rust: move rustfmt.toml to repo root so it can be used by `hg fix`...
r46195 edition = "2018"
max_width = 79
wrap_comments = true
error_on_line_overflow = true