Skip to content

Commit b68ea54

Browse files
authored
Use ITensorMPS.jl (#6)
1 parent 7de70b6 commit b68ea54

13 files changed

+20
-188
lines changed

Project.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
name = "ITensorGaussianMPS"
22
uuid = "2be41995-7c9f-4653-b682-bfa4e7cebb93"
33
authors = ["Matthew Fishman <[email protected]> and contributors"]
4-
version = "0.1.6"
4+
version = "0.1.7"
55

66
[deps]
77
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
8+
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
89
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
910
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1011

1112
[compat]
1213
Compat = "3.40.0, 4"
13-
ITensors = "0.3.58, 0.4, 0.5"
14+
ITensorMPS = "0.1"
15+
ITensors = "0.3.58, 0.4, 0.5, 0.6"
1416
LinearAlgebra = "1.6"
1517
julia = "1.6"

examples/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[deps]
22
ITensorGaussianMPS = "2be41995-7c9f-4653-b682-bfa4e7cebb93"
3+
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
34
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"

examples/broken/hubbard_1d_no_spin_conservation.jl

Lines changed: 0 additions & 84 deletions
This file was deleted.

examples/broken/hubbard_2d_no_spin_conservation.jl

Lines changed: 0 additions & 96 deletions
This file was deleted.

examples/hubbard_1d_spin_conservation.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ITensors
21
using ITensorGaussianMPS
2+
using ITensorMPS
3+
using ITensors
34
using LinearAlgebra
45

56
# Electrons

examples/hubbard_2d_spin_conservation.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ITensors
21
using ITensorGaussianMPS
2+
using ITensorMPS
3+
using ITensors
34
using LinearAlgebra
45

56
# Electrons

examples/mps_to_determinants.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ITensors
21
using ITensorGaussianMPS
2+
using ITensorMPS
3+
using ITensors
34
using LinearAlgebra
45

56
# Half filling

examples/spinless_fermion.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
using ITensors
21
using ITensorGaussianMPS
2+
using ITensorMPS
3+
using ITensors
34
using LinearAlgebra
45

56
# Half filling

examples/spinless_fermion_pairing.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# This script shows a minimal example of the GMPS-MPS conversion
22
# of the ground state of quadratic fermionic Hamiltonian with pairing terms.
3-
using LinearAlgebra
4-
using ITensors
53
using ITensorGaussianMPS
4+
using ITensorMPS
5+
using ITensors
6+
using LinearAlgebra
67

78
ITensors.disable_contraction_sequence_optimization()
89
let

test/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[deps]
2+
ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
23
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5"
34
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
45
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)