Skip to content

Commit

Permalink
Remove unused files
Browse files Browse the repository at this point in the history
  • Loading branch information
reiniscirpons committed Apr 11, 2024
1 parent 3e59709 commit e8bcf2a
Show file tree
Hide file tree
Showing 213 changed files with 35 additions and 14,841 deletions.
16 changes: 0 additions & 16 deletions docs/Congruences.md

This file was deleted.

2,789 changes: 0 additions & 2,789 deletions docs/Doxyfile.bak

This file was deleted.

64 changes: 0 additions & 64 deletions docs/Doxyfile.old

This file was deleted.

14 changes: 0 additions & 14 deletions docs/KnuthBendix.md

This file was deleted.

12 changes: 0 additions & 12 deletions docs/WordGraphs.md

This file was deleted.

13 changes: 0 additions & 13 deletions docs/Words.md

This file was deleted.

8 changes: 7 additions & 1 deletion docs/fixup.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,18 @@ def fix_menu_3_part_2(data: str) -> tuple[str, bool]:
assert value[0] >= 0, "Malformed navigation index"
bad_indices.append(value[0])
value.insert(0, 0)
bad_indices.sort()
k = max(bad_indices)

if k == 0:
# Everything is already fine
return data, True

if bad_indices != list(range(k + 1)):
# TODO: Implement this.
raise NotImplementedError(
"Can't handle case where index navtree indices are non contiguous"
"Can't handle case where index navtree indices are non contiguous",
(data, bad_indices, k),
)

for key, value in paths.items():
Expand Down
Loading

0 comments on commit e8bcf2a

Please sign in to comment.