File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ class r2HPDHG(raPDHG):
82
82
adaptive_step_size_limit_coef : float = 0.2
83
83
warm_start : bool = False
84
84
feasibility_polishing : bool = False
85
- polishing_eps : float = 1e-06
85
+ eps_feas_polish : float = 1e-06
86
86
87
87
def take_step (
88
88
self , solver_state : PdhgSolverState , problem : QuadraticProgrammingProblem
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ class raPDHG(abc.ABC):
318
318
adaptive_step_size_limit_coef : float = 1.0
319
319
warm_start : bool = False
320
320
feasibility_polishing : bool = False
321
- polishing_eps : float = 1e-06
321
+ eps_feas_polish : float = 1e-06
322
322
323
323
def check_config (self ):
324
324
self ._termination_criteria = TerminationCriteria (
@@ -341,8 +341,8 @@ def check_config(self):
341
341
)
342
342
self ._polishing_termination_criteria = TerminationCriteria (
343
343
optimality_norm = self .optimality_norm ,
344
- eps_abs = self .polishing_eps ,
345
- eps_rel = self .polishing_eps ,
344
+ eps_abs = self .eps_feas_polish ,
345
+ eps_rel = self .eps_feas_polish ,
346
346
eps_primal_infeasible = self .eps_primal_infeasible ,
347
347
eps_dual_infeasible = self .eps_dual_infeasible ,
348
348
iteration_limit = self .iteration_limit ,
You can’t perform that action at this time.
0 commit comments