From d390c71c5971e4aa97e34f8e67214d5e475d05fb Mon Sep 17 00:00:00 2001 From: tfmlaX Date: Fri, 22 Nov 2024 16:21:28 +0100 Subject: [PATCH] set ITensor compatibility to v0.6 --- Project.toml | 2 +- src/MPSDynamics.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index ff30e96..8769cc2 100644 --- a/Project.toml +++ b/Project.toml @@ -10,7 +10,6 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" GraphRecipes = "bd48cda9-67a9-57be-86fa-5b3c104eda73" HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5" -ITensorMPS = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2" Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" JLD = "4138dd39-2aa7-5051-a626-17a0bb65d9c8" Jacobi = "83f21c0b-4282-5fbc-9e3f-f6da3d2e584c" @@ -26,5 +25,6 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" TensorOperations = "6aa20fa7-93e2-5fca-9bc0-fbd0db3c71a2" [compat] +ITensors = "0.6" TensorOperations = "4.0.7" julia = "1.7" diff --git a/src/MPSDynamics.jl b/src/MPSDynamics.jl index bc30b69..980d483 100644 --- a/src/MPSDynamics.jl +++ b/src/MPSDynamics.jl @@ -1,6 +1,6 @@ module MPSDynamics -using JLD, HDF5, Random, Dates, Plots, Printf, Distributed, LinearAlgebra, DelimitedFiles, KrylovKit, TensorOperations, GraphRecipes, SpecialFunctions, ITensors, ITensorMPS, Interpolations +using JLD, HDF5, Random, Dates, Plots, Printf, Distributed, LinearAlgebra, DelimitedFiles, KrylovKit, TensorOperations, GraphRecipes, SpecialFunctions, ITensors, Interpolations include("fundamentals.jl") include("reshape.jl")