Skip to content

Commit b0c54b1

Browse files
committed
Add sections in Method docs
1 parent 6d65379 commit b0c54b1

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed

docs/src/methods.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# List of all methods
22

3+
## Matrix Product State (MPS)
4+
5+
```@autodocs
6+
Modules = [MPSDynamics]
7+
Pages = ["mpsBasics.jl", "reshape.jl","tensorOps.jl", "fundamentals.jl", "switchmpo"]
8+
```
9+
## Tree Tensor Network (TTN)
10+
11+
```@autodocs
12+
Modules = [MPSDynamics]
13+
Pages = ["treeBasics.jl", "treeTDVP.jl","treeMeasure.jl", "treeIterators.jl", "treeTDVP.jl"]
14+
```
15+
16+
## Measure and Obervables
17+
18+
```@autodocs
19+
Modules = [MPSDynamics]
20+
Pages = ["measure.jl", "observables.jl"]
21+
```
22+
23+
## Models and Hamiltonians (MPO)
24+
25+
```@autodocs
26+
Modules = [MPSDynamics]
27+
Pages = ["models.jl", "electronkmpo.jl", "excitonphononmpo.jl"]
28+
```
29+
30+
## Chain-Mapping
31+
32+
```@autodocs
33+
Modules = [MPSDynamics]
34+
Pages = ["finitetemperature.jl", "chainOhmT.jl", "gauss.jl", "lanczos.jl", "mcdis2.jl" , "ohmicSpec.jl" , "quadohmT.jl", "r_jacobi.jl", "stieltjes.jl", ]
35+
```
36+
37+
## Dynamics propagation function
38+
39+
```@autodocs
40+
Modules = [MPSDynamics]
41+
Pages = ["MPSDynamics.jl", "chain2TDVP.jl", "chainA1TDVP.jl","chainDMRG.jl","chainTDVP.jl", "run_1TDVP.jl", "run_1TDVPLC.jl", "run_2TDVP.jl", "run_all.jl","run_DTDVP.jl"]
42+
```
43+
44+
## Advanced
345
```@autodocs
446
Modules = [MPSDynamics]
47+
Pages = ["flattendict.jl", "logging.jl", "logiter.jl","machines.jl"]
548
```

src/machines.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ end
4040
function init_machines(machs::Vector{T}) where T <: Machine
4141
launch_workers(machs) do pid
4242
@everywhere pid eval(using Pkg)
43-
@everywhere pid Pkg.add(PackageSpec(url="https://github.com/angusdunnett/MPSDynamics.git", rev="master"))
43+
@everywhere pid Pkg.add(PackageSpec(url="https://github.com/shareloqs/MPSDynamics.git", rev="master"))
4444
end
4545
end
4646

0 commit comments

Comments
 (0)