Skip to content

Commit

Permalink
Fix multiplier comment typo (#671)
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul authored Jan 2, 2025
1 parent da65ed8 commit b975cfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/optimization/solver/InteriorPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ void InteriorPoint(std::span<Variable> decisionVariables,
p_x = fr_x - x;
p_s = fr_s - s;

// Lagrange mutliplier estimates
// Lagrange multiplier estimates
//
// [y] = (ÂÂᵀ)⁻¹Â[ ∇f]
// [z] [−μe]
Expand Down
2 changes: 1 addition & 1 deletion src/optimization/solver/SQP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ void SQP(std::span<Variable> decisionVariables,
SolverExitCondition::kCallbackRequestedStop) {
p_x = fr_x - x;

// Lagrange mutliplier estimates
// Lagrange multiplier estimates
//
// y = (AₑAₑᵀ)⁻¹Aₑ∇f
//
Expand Down

0 comments on commit b975cfb

Please sign in to comment.