Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/man/tensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -946,8 +946,8 @@ the keyword argument `p`. The default value `notrunc()` implies no truncation, a
* `truncdim(χ::Integer)`: finds the optimal truncation such that the equivalent total
dimension of the internal vector space is no larger than `χ`;

* `truncspace(W)`: truncates such that the dimension of the internal vector space is
smaller than that of `W` in any sector, i.e. with
* `truncspace(W)`: truncates such that the dimension of the internal vector space is no
greater than that of `W` in any sector, i.e. with
`W₀ = min(fuse(codomain(t)), fuse(domain(t)))` this option will result in
`domain(U) == domain(Σ) == codomain(Σ) == codomain(Vᵈ) == min(W, W₀)`;

Expand Down
4 changes: 2 additions & 2 deletions src/tensors/factorizations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ case a truncated singular value decomposition will be computed. Choices are:
smaller than `η`;
* `truncdim(χ::Int)`: truncates such that the equivalent total dimension of the internal
vector space is no larger than `χ`;
* `truncspace(V)`: truncates such that the dimension of the internal vector space is
smaller than that of `V` in any sector.
* `truncspace(V)`: truncates such that the dimension of the internal vector space is no
greater than that of `V` in any sector.
* `truncbelow(η::Real)`: truncates such that every singular value is larger then `η` ;

Truncation options can also be combined using `&`, i.e. `truncbelow(η) & truncdim(χ)` will
Expand Down
Loading