Skip to content

Commit 59cfd61

Browse files
committed
Update QPSolverOptimize.cpp
1 parent 26d0c18 commit 59cfd61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Algos/QPSolverAlgo/QPSolverOptimize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ bool NOMAD::QPSolverOptimize::solveL1AugLag(
16541654
// Particular case : when the gap between lvar and uvar is too small, we immediately leave the procedure.
16551655
for (int i = 0; i < _n; ++i)
16561656
{
1657-
if (std::std::fabs(lvar.get(i, 0) - uvar.get(i, 0)) <= 1e-8)
1657+
if (std::fabs(lvar.get(i, 0) - uvar.get(i, 0)) <= 1e-8)
16581658
{
16591659
return false;
16601660
}

0 commit comments

Comments
 (0)