Skip to content

Commit ee238ae

Browse files
committed
Further update of the code documentation to current state of the code
1 parent 345ea8b commit ee238ae

File tree

97 files changed

+28245
-10678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+28245
-10678
lines changed

.readthedocs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ version: 2
22

33
# Set the version of Python and other tools you might need
44
build:
5-
os: ubuntu-20.04
5+
os: ubuntu-lts-latest
66
tools:
7-
python: "3.9"
7+
python: latest
88

99
# Build documentation in the docs/ directory with Sphinx
1010
sphinx:

.zenodo.json

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"creators": [
3+
{
4+
"orcid": "0000-0003-4513-5139",
5+
"affiliation": "Freie Universität Berlin",
6+
"name": "Naumann, Jan"
7+
},
8+
{
9+
"orcid": "0000-0001-5534-6103",
10+
"affiliation": "Freie Universität Berlin",
11+
"name": "Schmoll, Philipp"
12+
},
13+
{
14+
"orcid": "0000-0002-6224-1964",
15+
"affiliation": "Freie Universität Berlin",
16+
"name": "Wilde, Frederik"
17+
},
18+
{
19+
"affiliation": "Freie Universität Berlin",
20+
"name": "Krein, Finn"
21+
}
22+
],
23+
24+
"contributors": [
25+
{
26+
"orcid": "0009-0006-8139-8648",
27+
"affiliation": "University of Cologne",
28+
"name": "Weerda, Erik Lennart",
29+
"type": "Researcher"
30+
},
31+
{
32+
"orcid": "0000-0002-8283-1005",
33+
"affiliation": "University of Cologne",
34+
"name": "Rizzi, Matteo",
35+
"type": "Supervisor"
36+
},
37+
{
38+
"orcid": "0000-0003-3033-1292",
39+
"affiliation": "Freie Universität Berlin",
40+
"name": "Eisert, Jens",
41+
"type": "Supervisor"
42+
}
43+
],
44+
45+
"description": "A versatile tensor network library for variational ground state simulations in two spatial dimensions.",
46+
47+
"license": "GPL-3.0-or-later",
48+
49+
"title": "variPEPS (Python version)",
50+
51+
"related_identifiers": [
52+
{
53+
"identifier": "arXiv:2308.12358",
54+
"relation": "isDocumentedBy",
55+
"resource_type": "publication-preprint"
56+
},
57+
{
58+
"identifier": "https://varipeps.readthedocs.io/en/stable/",
59+
"relation": "isDocumentedBy",
60+
"resource_type": "publication-softwaredocumentation"
61+
}
62+
],
63+
64+
"keywords": ["peps", "tensor-networks", "variational-optimization"],
65+
66+
"communities": [
67+
{"identifier": "crc183"}
68+
]
69+
}

CITATION.cff

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
3+
4+
cff-version: 1.2.0
5+
title: variPEPS (Python version)
6+
message: >-
7+
If you use this software, please cite it using the
8+
metadata from this file.
9+
type: software
10+
authors:
11+
- given-names: Jan
12+
family-names: Naumann
13+
14+
affiliation: Freie Universität Berlin
15+
orcid: 'https://orcid.org/0000-0003-4513-5139'
16+
- given-names: Schmoll
17+
family-names: Philipp
18+
affiliation: Freie Universität Berlin
19+
orcid: 'https://orcid.org/0000-0001-5534-6103'
20+
21+
- given-names: Wilde
22+
orcid: 'https://orcid.org/0000-0002-6224-1964'
23+
family-names: Frederik
24+
affiliation: Freie Universität Berlin
25+
- given-names: Krein
26+
family-names: Finn
27+
identifiers:
28+
- type: doi
29+
value: 10.48550/arXiv.2308.12358
30+
description: arXiv preprint of the description of the method
31+
- type: doi
32+
value: 10.5281/zenodo.10852390
33+
description: Zenodo DOI for current version of the code
34+
repository-code: 'https://github.com/variPEPS/variPEPS_Python'
35+
url: 'https://varipeps.readthedocs.io/en/stable'
36+
abstract: >-
37+
A versatile tensor network library for variational ground
38+
state simulations in two spatial dimensions
39+
keywords:
40+
- peps
41+
- tensor-networks
42+
- variational-optimization
43+
license: GPL-3.0-or-later

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
PEPS algorithms in Python
2-
=========================
1+
variPEPS -- Versatile tensor network library for variational ground state simulations in two spatial dimensions.
2+
================================================================================================================
3+
4+
[![DOI](https://zenodo.org/badge/773767511.svg)](https://zenodo.org/doi/10.5281/zenodo.10852390)
5+
[![Documentation Status](https://readthedocs.org/projects/varipeps/badge/?version=latest)](https://varipeps.readthedocs.io/en/stable/?badge=latest)
36

47
Install dependencies
58
--------------------

docs/requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
sphinx>=4.4.0
22
sphinx_rtd_theme>=1.0.0
33
sphinx_autodoc_defaultargs>=0.1.2
4+
sphinx_subfigure>=0.2.4

docs/source/api/config.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.config
44

55
Config of PEPS-AD module (:mod:`varipeps.config`)
6-
================================================
6+
=================================================
77

88
.. automodule:: varipeps.config
99
:members:

docs/source/api/contractions/apply.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
.. currentmodule:: varipeps.contractions
44

55
Apply a contraction (:func:`varipeps.contractions.apply_contraction`)
6-
====================================================================
6+
=====================================================================
77

88
.. autofunction:: apply_contraction

docs/source/api/contractions/definitions.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.contractions
44

55
Definitions for contractions (:class:`varipeps.contractions.Definitions`)
6-
========================================================================
6+
=========================================================================
77

88
.. autoclass:: Definitions
99
:members:

docs/source/api/contractions/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.contractions
66

77
Contractions definitions and helper methods (:mod:`varipeps.contractions`)
8-
=========================================================================
8+
==========================================================================
99

1010
.. toctree::
1111
:maxdepth: 2

docs/source/api/ctmrg/absorption.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.ctmrg.absorption
66

77
Calculate the new CTMRG tensors for a single step (:mod:`varipeps.ctmrg.absorption`)
8-
===================================================================================
8+
====================================================================================
99

1010
.. automodule:: varipeps.ctmrg.absorption
1111
:members:

docs/source/api/ctmrg/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.ctmrg
66

77
CTMRG method (:mod:`varipeps.ctmrg`)
8-
===================================
8+
====================================
99

1010
.. toctree::
1111
:maxdepth: 2

docs/source/api/ctmrg/projectors.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.ctmrg.projectors
66

77
Calculation of CTMRG projectors (:mod:`varipeps.ctmrg.projectors`)
8-
=================================================================
8+
==================================================================
99

1010
.. automodule:: varipeps.ctmrg.projectors
1111
:members:

docs/source/api/ctmrg/routine.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.ctmrg
44

55
Calculate the new converged CTMRG tensors (:func:`varipeps.ctmrg.calc_ctmrg_env` and :func:`peps_ad.ctmrg.calc_ctmrg_env_custom_rule`)
6-
=====================================================================================================================================
6+
======================================================================================================================================
77

88
.. autofunction:: calc_ctmrg_env
99

docs/source/api/expectation/index.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.expectation
66

77
Calculation of expectation values (:mod:`varipeps.expectation`)
8-
==============================================================
8+
===============================================================
99

1010
.. toctree::
1111
:maxdepth: 2
@@ -14,6 +14,7 @@ Calculation of expectation values (:mod:`varipeps.expectation`)
1414
one_site
1515
two_sites
1616
three_sites
17+
spiral_helpers
1718

1819
.. automodule:: varipeps.expectation
1920
:members:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.. _varipeps_expectation_spiral_helpers:
2+
3+
.. currentmodule:: varipeps.expectation.spiral_helpers
4+
5+
Helper functions for spiral iPEPS ansatz
6+
========================================
7+
8+
.. automodule:: varipeps.expectation.spiral_helpers
9+
:members:
10+
:undoc-members:
11+
:show-inheritance:
12+
:special-members: __call__
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.. _varipeps_mapping_florett_pentagon:
2+
3+
.. currentmodule:: varipeps.mapping.florett_pentagon
4+
5+
Mapping of Floret-Pentagon structures (:mod:`varipeps.mapping.florett_pentagon`)
6+
================================================================================
7+
8+
.. automodule:: varipeps.mapping.florett_pentagon
9+
:members:
10+
:undoc-members:
11+
:show-inheritance:
12+
:special-members: __call__

docs/source/api/mapping/honeycomb.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.. _varipeps_mapping_honeycomb:
2+
3+
.. currentmodule:: varipeps.mapping.honeycomb
4+
5+
Mapping of Honeycomb structures (:mod:`varipeps.mapping.honeycomb`)
6+
===================================================================
7+
8+
.. automodule:: varipeps.mapping.honeycomb
9+
:members:
10+
:undoc-members:
11+
:show-inheritance:
12+
:special-members: __call__

docs/source/api/mapping/index.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
.. currentmodule:: varipeps.mapping
66

77
Mapping of other structures to PEPS unitcells (:mod:`varipeps.mapping`)
8-
======================================================================
8+
=======================================================================
99

1010
.. toctree::
1111
:maxdepth: 2
1212

13+
florett_pentagon
14+
honeycomb
1315
kagome
1416
maple_leaf
1517
square_kagome

docs/source/api/mapping/kagome.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.mapping.kagome
44

55
Mapping of Kagome structures (:mod:`varipeps.mapping.kagome`)
6-
============================================================
6+
=============================================================
77

88
.. automodule:: varipeps.mapping.kagome
99
:members:

docs/source/api/mapping/maple_leaf.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.mapping.maple_leaf
44

55
Mapping of Maple leaf structures (:mod:`varipeps.mapping.maple_leaf`)
6-
====================================================================
6+
=====================================================================
77

88
.. automodule:: varipeps.mapping.maple_leaf
99
:members:

docs/source/api/mapping/square_kagome.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.. currentmodule:: varipeps.mapping.square_kagome
44

55
Mapping of Square-Kagome structures (:mod:`varipeps.mapping.square_kagome`)
6-
==========================================================================
6+
===========================================================================
77

88
.. automodule:: varipeps.mapping.square_kagome
99
:members:

docs/source/api/typing.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.. currentmodule:: varipeps.typing
66

77
Typing helper (:mod:`varipeps.typing`)
8-
=====================================
8+
======================================
99

1010
.. automodule:: varipeps.typing
1111
:members:

0 commit comments

Comments
 (0)