diff --git a/docs/src/man/tensors.md b/docs/src/man/tensors.md index cf3d468de..5a8aaf45a 100644 --- a/docs/src/man/tensors.md +++ b/docs/src/man/tensors.md @@ -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₀)`; diff --git a/src/tensors/factorizations.jl b/src/tensors/factorizations.jl index 2292b6c17..9a6bf5dd1 100644 --- a/src/tensors/factorizations.jl +++ b/src/tensors/factorizations.jl @@ -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