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
4 changes: 1 addition & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ITensorBase"
uuid = "4795dd04-0d67-49bb-8f44-b89c448a1dc7"
version = "0.12.4"
version = "0.13.0"
authors = ["ITensor developers <support@itensor.org> and contributors"]

[workspace]
Expand All @@ -14,7 +14,6 @@ Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
ConstructionBase = "187b0558-2788-49d3-abe0-74a17ed4e7c9"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MatrixAlgebraKit = "6c742aac-3347-4629-af66-fc926824e5e4"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
TensorAlgebra = "68bd88dc-f39d-4e12-b2ca-f046b68fcc6a"
Expand Down Expand Up @@ -47,7 +46,6 @@ LinearAlgebra = "1.10"
MatrixAlgebraKit = "0.2, 0.3, 0.4, 0.5, 0.6"
Mooncake = "0.4.202, 0.5"
OMEinsumContractionOrders = "1.3"
OrderedCollections = "1.6"
Random = "1.10"
SimpleTraits = "0.9.4"
TensorAlgebra = "0.17.5"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = ".."

[compat]
Documenter = "1"
ITensorBase = "0.12"
ITensorBase = "0.13"
ITensorFormatter = "0.2.27"
Literate = "2"
MatrixAlgebraKit = "0.2, 0.3, 0.4, 0.5, 0.6"
Expand Down
10 changes: 5 additions & 5 deletions docs/src/dev_interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,17 +50,17 @@ aligneddims
## Experimental

These features support building and applying operators, where an operator is a tensor whose
dimension names are split into a codomain (output) set and a domain (input) set. The API is
dimension names are split into an output set and an input set. The API is
still being refined and is subject to change. Build an operator with [`operator`](@ref) or
allocate one with [`similar_operator`](@ref), apply it to a tensor with [`apply`](@ref), and
recover its underlying tensor and name sets with [`state`](@ref), [`codomainnames`](@ref),
and [`domainnames`](@ref).
recover its underlying tensor and name sets with [`state`](@ref), [`outputnames`](@ref),
and [`inputnames`](@ref).

```@docs; canonical=false
operator
similar_operator
apply
state
codomainnames
domainnames
outputnames
inputnames
```
2 changes: 1 addition & 1 deletion examples/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ MatrixAlgebraKit = "6c742aac-3347-4629-af66-fc926824e5e4"
path = ".."

[compat]
ITensorBase = "0.12"
ITensorBase = "0.13"
MatrixAlgebraKit = "0.2, 0.3, 0.4, 0.5, 0.6"
6 changes: 3 additions & 3 deletions src/ITensorBase.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module ITensorBase

export AbstractNamedTensor, NamedTensor, AbstractITensor, ITensor, Index,
NamedUnitRange, aligndims, aligneddims, apply, codomainnames, commonind, commoninds,
dimnames, dimnametype, domainnames, hascommoninds, id, inds, mapinds, named, nameddims,
noncommonind, noncommoninds, noprime, operator, prime, replaceinds, sim,
NamedUnitRange, aligndims, aligneddims, apply, commonind, commoninds,
dimnames, dimnametype, hascommoninds, id, inds, inputnames, mapinds, named, nameddims,
noncommonind, noncommoninds, noprime, operator, outputnames, prime, replaceinds, sim,
similar_operator, state,
trycommonind, trynoncommonind, tryuniqueind, uniqueind, uniqueinds, unioninds,
uniquename
Expand Down
Loading
Loading