Skip to content

Commit 5e38fa6

Browse files
committed
Make truncspace explanation more specific
1 parent 980fe55 commit 5e38fa6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/man/tensors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@ the keyword argument `p`. The default value `notrunc()` implies no truncation, a
947947
dimension of the internal vector space is no larger than `χ`;
948948

949949
* `truncspace(W)`: truncates such that the dimension of the internal vector space is
950-
smaller than that of `W` in any sector, i.e. with
950+
smaller than or equal to that of `W` in any sector, i.e. with
951951
`W₀ = min(fuse(codomain(t)), fuse(domain(t)))` this option will result in
952952
`domain(U) == domain(Σ) == codomain(Σ) == codomain(Vᵈ) == min(W, W₀)`;
953953

src/tensors/factorizations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ case a truncated singular value decomposition will be computed. Choices are:
3333
* `truncdim(χ::Int)`: truncates such that the equivalent total dimension of the internal
3434
vector space is no larger than `χ`;
3535
* `truncspace(V)`: truncates such that the dimension of the internal vector space is
36-
smaller than that of `V` in any sector.
36+
smaller than or equal to that of `V` in any sector.
3737
* `truncbelow(η::Real)`: truncates such that every singular value is larger then `η` ;
3838
3939
Truncation options can also be combined using `&`, i.e. `truncbelow(η) & truncdim(χ)` will

0 commit comments

Comments
 (0)