We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26d0c18 commit 59cfd61Copy full SHA for 59cfd61
src/Algos/QPSolverAlgo/QPSolverOptimize.cpp
@@ -1654,7 +1654,7 @@ bool NOMAD::QPSolverOptimize::solveL1AugLag(
1654
// Particular case : when the gap between lvar and uvar is too small, we immediately leave the procedure.
1655
for (int i = 0; i < _n; ++i)
1656
{
1657
- if (std::std::fabs(lvar.get(i, 0) - uvar.get(i, 0)) <= 1e-8)
+ if (std::fabs(lvar.get(i, 0) - uvar.get(i, 0)) <= 1e-8)
1658
1659
return false;
1660
}
0 commit comments