Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 66708de

Browse files
committedJun 28, 2024·
test disable res infeas
1 parent fed1e6c commit 66708de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/scs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ static void compute_residuals(ScsResiduals *r, scs_int m, scs_int n) {
218218
scs_printf("nm_aty %.6e\n", NORM(r->aty, n));
219219
if (r->bty_tau < 0) {
220220
nm_aty = NORM(r->aty, n);
221-
r->res_infeas = SAFEDIV_POS(nm_aty, -r->bty_tau);
221+
r->res_infeas = 1.0; /* SAFEDIV_POS(nm_aty, -r->bty_tau); */
222222
}
223223
}
224224

0 commit comments

Comments
 (0)
Please sign in to comment.