Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ projects = ["test", "docs", "examples"]
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"
BlockTensorKit = "5f87ffc2-9cf1-4a46-8172-465d160bd8cd"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Dictionaries = "85a47980-9c8c-11e8-2b9f-f7ca1fa99fb4"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
HalfIntegers = "f0d1745a-41c9-11e9-1dd9-e5d34d218721"
KrylovKit = "0b1a1467-8014-51b9-945f-bf0ae24f4b77"
Expand Down Expand Up @@ -38,6 +39,7 @@ Accessors = "0.1"
Adapt = "4"
BlockTensorKit = "0.3.14"
Compat = "3.47, 4.10"
Dictionaries = "0.4.6"
DocStringExtensions = "0.9.3"
HalfIntegers = "1.6.0"
KrylovKit = "0.8.3, 0.9.2, 0.10"
Expand Down
5 changes: 4 additions & 1 deletion src/MPSKit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export entropy, entanglement_spectrum
export open_boundary_conditions, periodic_boundary_conditions
export entanglementplot, transferplot
export r_LL, l_LL, r_RR, l_RR, r_RL, r_LR, l_RL, l_LR # TODO: rename
export mpo_compression

# unexported
using Compat: @compat
Expand Down Expand Up @@ -79,13 +80,14 @@ using Accessors
using HalfIntegers
using DocStringExtensions

using LinearAlgebra: diag, Diagonal
using LinearAlgebra: diag, Diagonal, diagm
using LinearAlgebra: LinearAlgebra
using Random
using Base: @kwdef, @propagate_inbounds
using LoggingExtras
using OhMyThreads
using TimerOutputs: TimerOutput, @timeit, timeit, reset_timer!, disable_timer!, enable_timer!
using Dictionaries # TODO: change mpocompression to not use Dictionaries

# Includes
# --------
Expand Down Expand Up @@ -130,6 +132,7 @@ include("operators/projection.jl")
include("operators/timedependence.jl")
include("operators/multipliedoperator.jl")
include("operators/lazysum.jl")
include("operators/mpocompression.jl")

include("transfermatrix/transfermatrix.jl")
include("transfermatrix/transfer.jl")
Expand Down
Loading
Loading