Skip to content

Commit

Permalink
Fixes a typo in program attributes documentation (RobotLocomotion#21163)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreAmice authored Mar 20, 2024
1 parent eeafdbe commit deb04db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions solvers/program_attribute.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ enum class ProgramAttribute {
kLorentzConeConstraint, ///< A Lorentz cone constraint.
kRotatedLorentzConeConstraint, ///< A rotated Lorentz cone constraint.

kPositiveSemidefiniteConstraint, /// A positive semidefinite constraint.
kPositiveSemidefiniteConstraint, ///< A positive semidefinite constraint.

kExponentialConeConstraint, /// An exponential cone constraint.
kExponentialConeConstraint, ///< An exponential cone constraint.

kL2NormCost, /// An L2 norm |Ax+b|
kL2NormCost, ///< An L2 norm |Ax+b|

kBinaryVariable, /// variable taking binary value {0, 1}.
kBinaryVariable, ///< Variable taking binary value {0, 1}.

kCallback, /// support callback during solving the problem.
kCallback, ///< Supports callback during solving the problem.
};

using ProgramAttributes = std::unordered_set<ProgramAttribute, DefaultHash>;
Expand Down

0 comments on commit deb04db

Please sign in to comment.