Skip to content

Commit 2e6a743

Browse files
fixed typo at solvers/linsolve.jl (#169)
1 parent 0d4137a commit 2e6a743

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ITensorMPS"
22
uuid = "0d1a4710-d33b-49a5-8f18-73bdf49b47e2"
33
authors = ["Matthew Fishman <[email protected]>", "Miles Stoudenmire <[email protected]>"]
4-
version = "0.3.25"
4+
version = "0.3.26"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

src/solvers/linsolve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Keyword arguments:
2929
- `nsweeps`, `cutoff`, `maxdim`, etc. (like for other MPO/MPS updaters).
3030
- `updater_kwargs=(;)` - a `NamedTuple` containing keyword arguments that will get forwarded to the local updater,
3131
in this case `KrylovKit.linsolve` which is a GMRES linear updater. For example:
32-
```juli
32+
```julia
3333
linsolve(A, b, x; maxdim=100, cutoff=1e-8, nsweeps=10, updater_kwargs=(; ishermitian=true, tol=1e-6, maxiter=20, krylovdim=30))
3434
```
3535
See `KrylovKit.jl` documentation for more details on available keyword arguments.

0 commit comments

Comments
 (0)