-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
486 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# TODO: Delete these and move them to the tops of files where | ||
# they are be used, and change to explicit usings, i.e. | ||
# `using NDTensors: tensor`. | ||
# Try using `ExplicitImports.jl`: | ||
# https://github.com/ericphanson/ExplicitImports.jl | ||
# to automate the process. | ||
using Adapt | ||
using BitIntegers | ||
using ChainRulesCore | ||
using Compat | ||
using DocStringExtensions | ||
using Functors | ||
using HDF5 | ||
using IsApprox | ||
using LinearAlgebra | ||
using NDTensors | ||
using NDTensors.RankFactorization: Spectrum, eigs, entropy, truncerror | ||
using PackageCompiler | ||
using Pkg | ||
using Printf | ||
using Random | ||
using Reexport | ||
using SerializedElementArrays | ||
using StaticArrays | ||
using TimerOutputs | ||
using TupleTools | ||
using Zeros | ||
|
||
# This makes `scalartype` available externally as | ||
# `ITensors.scalartype`, this isn't be used within | ||
# the `ITensors` module right now. | ||
using NDTensors: scalartype |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[deps] | ||
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa" | ||
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" | ||
ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5" | ||
QuadGK = "1fd47b50-473d-5c70-9696-f719f8f3bcdc" | ||
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@eval module $(gensym()) | ||
using ITensors: ITensors | ||
using Test: @test, @testset | ||
include("utils/TestITensorsExportedNames/TestITensorsExportedNames.jl") | ||
using .TestITensorsExportedNames: ITENSORS_EXPORTED_NAMES | ||
@testset "Test $name is exported" for name in ITENSORS_EXPORTED_NAMES | ||
@test Base.isexported(ITensors, name) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.