Skip to content

Commit cf494b9

Browse files
authored
Make truncspace explanation more specific (#284)
* Make `truncspace` explanation more specific * Compromise
1 parent efa0d59 commit cf494b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/man/tensors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -946,8 +946,8 @@ the keyword argument `p`. The default value `notrunc()` implies no truncation, a
946946
* `truncdim(χ::Integer)`: finds the optimal truncation such that the equivalent total
947947
dimension of the internal vector space is no larger than `χ`;
948948

949-
* `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
949+
* `truncspace(W)`: truncates such that the dimension of the internal vector space is no
950+
greater than 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ case a truncated singular value decomposition will be computed. Choices are:
3232
smaller than `η`;
3333
* `truncdim(χ::Int)`: truncates such that the equivalent total dimension of the internal
3434
vector space is no larger than `χ`;
35-
* `truncspace(V)`: truncates such that the dimension of the internal vector space is
36-
smaller than that of `V` in any sector.
35+
* `truncspace(V)`: truncates such that the dimension of the internal vector space is no
36+
greater than 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)