-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs compressions, contractions * fix typos * add $(TYPEDSIGNATURES) * add docs * work in progress * work in progress * Work in Progress * work in progress * somewhat done --------- Co-authored-by: annamariadziubyna <[email protected]> Co-authored-by: tomsmierz <[email protected]>
- Loading branch information
1 parent
dd89004
commit 60b93ce
Showing
6 changed files
with
180 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Documenter, SpinGlassTensors | ||
|
||
_pages = [ | ||
"Introduction" => "index.md", | ||
"API Reference" => "api.md" | ||
] | ||
# ============================ | ||
|
||
makedocs( | ||
sitename="SpinGlassTensors", | ||
modules = [SpinGlassTensors], | ||
pages = _pages | ||
) |
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,34 @@ | ||
# Library | ||
|
||
--- | ||
```@meta | ||
CurrentModule = SpinGlassTensors | ||
``` | ||
## Additional methods for `Base` and `LinearAlgebra` | ||
```@docs | ||
dot | ||
norm | ||
randn | ||
rank | ||
``` | ||
|
||
## MPS | ||
```@docs | ||
MPS | ||
is_left_normalized | ||
is_right_normalized | ||
physical_dim | ||
verify_bonds | ||
verify_physical_dims | ||
``` | ||
|
||
## Compresions and Contractions | ||
|
||
```@docs | ||
canonise! | ||
compress! | ||
left_env | ||
right_env | ||
truncate! | ||
``` |
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,6 @@ | ||
# SpinGlassTensor | ||
|
||
Part of [SpinGlassPEPS](https://github.com/euro-hpc-pl/SpinGlassPEPS.jl) package. It constitutes the basis for the preparation of tensors and operations on them. | ||
|
||
!!! info | ||
We don't expect the user to interact with this package, as it is more of a "back-end" type. Nevertheless, we provide API references should the need arise. |
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