Skip to content
Merged
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: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
workflow_dispatch:

jobs:
build:
documentation:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ permissions:

jobs:
runic:
uses: "QuantumKitHub/QuantumKitHubActions/.github/workflows/FormatCheck.yml@main"mKitHub/QuantumKitHubActions/.github/workflows/FormatCheck.yml@main"
uses: "QuantumKitHub/QuantumKitHubActions/.github/workflows/FormatCheck.yml@main"
6 changes: 4 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name = "BlockTensorKit"
uuid = "5f87ffc2-9cf1-4a46-8172-465d160bd8cd"
authors = ["Lukas Devos <[email protected]> and contributors"]
version = "0.2.0"
version = "0.3.0"

[deps]
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MatrixAlgebraKit = "6c742aac-3347-4629-af66-fc926824e5e4"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Strided = "5e0ebb24-38b0-5f93-81fe-25c709ecae67"
TensorKit = "07d1fe3e-3e46-537d-9eac-e9e13d0d4cec"
Expand All @@ -20,10 +21,11 @@ BlockArrays = "1"
Combinatorics = "1"
Compat = "4.13"
LinearAlgebra = "1"
MatrixAlgebraKit = "0.5"
Random = "1"
SafeTestsets = "0.1"
Strided = "2"
TensorKit = "0.14"
TensorKit = "0.15"
TensorOperations = "5"
Test = "1"
TestExtras = "0.2, 0.3"
Expand Down
23 changes: 5 additions & 18 deletions src/BlockTensorKit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,12 @@ export dropzeros!, droptol!
export undef_blocks

using TensorKit
using TensorKit:
OneOrNoneIterator,
HomSpace,
MatrixAlgebra,
SectorDict,
AdjointTensorMap,
adjointtensorindices,
compose,
sectorscalartype
using TensorKit: OneOrNoneIterator, HomSpace, SectorDict, AdjointTensorMap,
adjointtensorindices, compose, sectorscalartype
using VectorInterface
using TensorOperations
using TensorOperations:
dimcheck_tensoradd,
dimcheck_tensorcontract,
dimcheck_tensortrace,
argcheck_tensoradd,
argcheck_tensorcontract,
argcheck_tensortrace,
AbstractBackend
using TensorOperations: dimcheck_tensoradd, dimcheck_tensorcontract, dimcheck_tensortrace,
argcheck_tensoradd, argcheck_tensorcontract, argcheck_tensortrace, AbstractBackend
using LinearAlgebra
using Strided
using BlockArrays
Expand All @@ -48,6 +35,7 @@ import VectorInterface as VI
import TensorKit as TK
import TensorOperations as TO
import TupleTools as TT
import MatrixAlgebraKit as MAK

# Spaces
include("vectorspaces/sumspace.jl")
Expand All @@ -64,7 +52,6 @@ include("tensors/vectorinterface.jl")
include("tensors/tensoroperations.jl")

include("linalg/linalg.jl")
include("linalg/matrixalgebra.jl")
include("linalg/factorizations.jl")

include("auxiliary/sparsetensorarray.jl")
Expand Down
Loading