Skip to content

Commit

Permalink
docstrings updated
Browse files Browse the repository at this point in the history
  • Loading branch information
titaschanda committed Dec 21, 2023
1 parent 8c15c4f commit f6aaaa7
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/mps/sweep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,14 @@ Performs Global Subspace Expansion. The `StateEnvs` must be created by a single
- `extension_cutoff::Float64 = 1E-10`: Cutoff for the basis extension step in GSE.
"""
function krylov_extend!(sysenv::StateEnvs{ProjMPO}; kwargs...)::Nothing

extension_krylovdim::Int = get(kwargs, :extension_krylovdim, 3)
extension_applyH_cutoff::Float64 = get(kwargs, :extension_applyH_cutoff,
Float64_threshold())
extension_applyH_maxdim::Int = get(kwargs, :extension_applyH_maxdim,
maxlinkdim(psi) + 1)
extension_cutoff::Float64 = get(kwargs, :extension_cutoff,
1E-10)

kr_time = @elapsed begin

Expand Down

0 comments on commit f6aaaa7

Please sign in to comment.