Skip to content

Commit 444c720

Browse files
authored
Start using ITensorMPS.jl (#83)
1 parent be9d201 commit 444c720

30 files changed

+46
-44
lines changed

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,26 @@ version = "0.1.0"
66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
88
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
9+
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
910
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
1011
Infinities = "e1ba4f0e-776d-440f-acd9-e1d2e9742647"
1112
IterTools = "c8e1da08-722c-5040-9ed9-7db0dc04731e"
1213
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
1314
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1415
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1516
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc"
16-
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1717
SplitApplyCombine = "03a91e81-4c3e-53e1-a0a4-9c0c8f19dd66"
1818

1919
[compat]
2020
Compat = "3, 4"
21-
HDF5 = "0.15, 0.16"
22-
ITensors = "0.3.48"
21+
HDF5 = "0.15, 0.16, 0.17"
22+
ITensorMPS = "0.1"
23+
ITensors = "0.3.48, 0.4, 0.5, 0.6"
2324
Infinities = "0.1"
2425
IterTools = "1"
25-
KrylovKit = "0.5, 0.6"
26+
KrylovKit = "0.5, 0.6, 0.7"
2627
OffsetArrays = "1"
2728
QuadGK = "2"
28-
Requires = "1"
2929
SplitApplyCombine = "1.2.2"
3030
julia = "1.6"
3131

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ julia> using Pkg; Pkg.add(url="https://github.com/mtfishman/ITensorInfiniteMPS.j
1818

1919
This package is a work in progress. Here are some examples of the interface:
2020
```julia
21-
julia> using ITensors, ITensorInfiniteMPS
21+
julia> using ITensors, ITensorMPS, ITensorInfiniteMPS
2222

2323
julia> s = siteinds("S=1/2", 3)
2424
3-element Array{Index{Int64},1}:

examples/development/finite_mps_to_infinite_mps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33

44
# H = -J Σⱼ XⱼXⱼ₊₁ - h Σⱼ Zⱼ

examples/development/orthogonalize_infinitemps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33
using Random
44

examples/development/vumps/transfer_matrix_spectrum_arpack.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33

44
##############################################################################

examples/development/vumps/vumps_from_dmrg.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33
using Random
44

examples/development/vumps/vumps_ising_noncontiguous.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33

44
##############################################################################

examples/development/vumps/vumps_localham.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33
using Random
44

examples/development/vumps/vumps_localham_qns.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33
using Random
44

examples/development/vumps/vumps_mpo.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ITensors
1+
using ITensors, ITensorMPS
22
using ITensorInfiniteMPS
33
using Random
44

0 commit comments

Comments
 (0)