Skip to content

Commit d14e2aa

Browse files
committed
More general factorize
1 parent 3baf885 commit d14e2aa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorBase"
22
uuid = "4795dd04-0d67-49bb-8f44-b89c448a1dc7"
33
authors = ["ITensor developers <support@itensor.org> and contributors"]
4-
version = "0.2.3"
4+
version = "0.2.4"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

src/quirks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ function translate_factorize_kwargs(;
3636
maxdim=nothing,
3737
kwargs...,
3838
)
39-
orth::Symbol = @something orth ortho :left
39+
orth = Symbol(@something orth ortho :left)
4040
rtol = @something rtol cutoff Some(nothing)
4141
maxrank = @something maxrank maxdim Some(nothing)
42-
!isnothing(maxrank) && error("`maxrank` not supported yet.")
42+
# !isnothing(maxrank) && error("`maxrank` not supported yet.")
4343
return filter_namedtuple(!isnothing, (; orth, rtol, maxrank, kwargs...))
4444
end
4545

0 commit comments

Comments
 (0)