Skip to content

Commit

Permalink
Fixup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsch committed Jun 4, 2024
1 parent d63996e commit 26d490f
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 219 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.16.10
# v0.16.13

Fix performance issues with high-dimensional `Custom` filtrations.

Expand Down
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ makedocs(;
"generated/stability.md",
"generated/cocycles.md",
"generated/cubical.md",
"generated/malaria.md",
],
"Benchmarks" => "benchmarks.md",
"Related Julia Packages" => "related-work.md",
Expand Down
213 changes: 0 additions & 213 deletions docs/src/examples/malaria.jl

This file was deleted.

5 changes: 2 additions & 3 deletions src/base/abstractcell.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@ is determined by the following.
* The `birth` of type `T` determines when the cell enters the filtration. Note that two
cells with the same `index` should also have the same `birth`.
* `vertices` should return the cell's vertices as a tuple. For 0-cells (vertices), the
`vertices` are also used to index into a filtration's
[`vertices`](vertices(::AbstractFiltration)).
* `vertices` should return the cell's vertices as a tuple. For 0-cells, these are also used
to index into a filtration's [`vertices`](@ref vertices(::AbstractFiltration)).
* The `sign` determens its orientation. Note that `cell == -cell`.
Expand Down
2 changes: 1 addition & 1 deletion src/base/primefield.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function mod_prime(i, ::Val{M}) where {M}
if !is_prime(M)
throw(DomainError(M, "modulus must be a prime number"))
end
if 1 < M 3037000499
if !(1 < M 3037000499)
throw(DomainError(M, "modulus must be smaller than √(typemax(Int))"))
end
i = i % M
Expand Down

0 comments on commit 26d490f

Please sign in to comment.