Skip to content

Commit

Permalink
Change OSQP rho evaluations to every 25 iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
timothy-nunn committed Aug 16, 2023
1 parent 7f7d36c commit 6931ddb
Show file tree
Hide file tree
Showing 3 changed files with 1,324 additions and 1,324 deletions.
2 changes: 1 addition & 1 deletion process/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def solve(self) -> int:
self.bndu,
max_iter=global_variables.maxcal,
epsilon=self.tolerance,
qsp_options={"eps_rel": 1e-1, "adaptive_rho": False},
qsp_options={"eps_rel": 1e-1, "adaptive_rho_interval": 25},
initial_B=B,
)
except VMCONConvergenceException as e:
Expand Down
Loading

0 comments on commit 6931ddb

Please sign in to comment.