Skip to content

Commit

Permalink
Add support for expand
Browse files Browse the repository at this point in the history
  • Loading branch information
mtfishman committed May 16, 2024
1 parent ea66c4a commit 0eb05be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "ITensorMPS"
uuid = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
authors = ["Matthew Fishman <[email protected]>", "Miles Stoudenmire <[email protected]>"]
version = "0.2.0"
version = "0.2.1"

[deps]
ITensorTDVP = "25707e16-a4db-4a07-99d9-4d67b7af0342"
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
ITensorTDVP = "0.4"
ITensorTDVP = "0.4.1"
ITensors = "0.3, 0.4, 0.5, 0.6"
Reexport = "1"
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion src/ITensorMPS.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ITensorMPS
using Reexport: @reexport
@reexport using ITensorTDVP: TimeDependentSum, dmrg_x, linsolve, tdvp, to_vec
@reexport using ITensorTDVP: TimeDependentSum, dmrg_x, expand, linsolve, tdvp, to_vec
# Not re-exported, but this makes these types and functions accessible
# as `ITensorMPS.x`.
using ITensors.ITensorMPS:
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using Test: @test, @test_broken, @testset
[
[:ITensorMPS]
# ITensorTDVP reexports
[:TimeDependentSum, :dmrg_x, :linsolve, :tdvp, :to_vec]
[:TimeDependentSum, :dmrg_x, :expand, :linsolve, :tdvp, :to_vec]
# ITensors and ITensors.ITensorMPS reexports
TestITensorMPSExportedNames.ITENSORMPS_EXPORTED_NAMES
],
Expand Down

0 comments on commit 0eb05be

Please sign in to comment.