Skip to content

Commit e5f0dd6

Browse files
authored
Add support for expand (#17)
1 parent ea66c4a commit e5f0dd6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "ITensorMPS"
22
uuid = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
33
authors = ["Matthew Fishman <[email protected]>", "Miles Stoudenmire <[email protected]>"]
4-
version = "0.2.0"
4+
version = "0.2.1"
55

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

1111
[compat]
12-
ITensorTDVP = "0.4"
12+
ITensorTDVP = "0.4.1"
1313
ITensors = "0.3, 0.4, 0.5, 0.6"
1414
Reexport = "1"
1515
julia = "1.6"

src/ITensorMPS.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module ITensorMPS
22
using Reexport: @reexport
3-
@reexport using ITensorTDVP: TimeDependentSum, dmrg_x, linsolve, tdvp, to_vec
3+
@reexport using ITensorTDVP: TimeDependentSum, dmrg_x, expand, linsolve, tdvp, to_vec
44
# Not re-exported, but this makes these types and functions accessible
55
# as `ITensorMPS.x`.
66
using ITensors.ITensorMPS:

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using Test: @test, @test_broken, @testset
1111
[
1212
[:ITensorMPS]
1313
# ITensorTDVP reexports
14-
[:TimeDependentSum, :dmrg_x, :linsolve, :tdvp, :to_vec]
14+
[:TimeDependentSum, :dmrg_x, :expand, :linsolve, :tdvp, :to_vec]
1515
# ITensors and ITensors.ITensorMPS reexports
1616
TestITensorMPSExportedNames.ITENSORMPS_EXPORTED_NAMES
1717
],

0 commit comments

Comments
 (0)