Skip to content

Commit

Permalink
Removes stereographic projection derivation; fix Doxygen nits (RobotL…
Browse files Browse the repository at this point in the history
…ocomotion#12834)

The derivation now exists in underactuated.
Also and fixes punctuation on MathematicalProgram doxygen.
  • Loading branch information
RussTedrake authored Mar 9, 2020
1 parent b63e8b2 commit 2036423
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 68 deletions.
Binary file removed doc/derivations/stereographic.pdf
Binary file not shown.
63 changes: 0 additions & 63 deletions doc/derivations/stereographic.texp

This file was deleted.

10 changes: 5 additions & 5 deletions solvers/mathematical_program_doxygen.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* optimization problem in the following form
* <pre>
* minₓ f(x)
* s.t x ∈ S
* s.t x ∈ S.
* </pre>
* Depending on the formulation of the objective function f, and the structure
* of the constraint set S, this optimization problem can be grouped into
Expand All @@ -30,18 +30,18 @@
* When the mathematical problem is formulated as the following linear system
* <pre>
* find x
* s.t Ax = b
* s.t Ax = b,
* </pre>
* , then @ref drake::solvers::LinearSystemSolver "LinearSystemSolver" provides
* then @ref drake::solvers::LinearSystemSolver "LinearSystemSolver" provides
* efficient closed form solution.
*
* When the mathematical problem is formulated as the following (convex)
* quadratic program with only linear equality constraint
* <pre>
* min 0.5 xᵀHx + aᵀx + b
* s.t Ax = b
* s.t Ax = b,
* </pre>
* , then @ref drake::solvers::EqualityConstrainedQPSolver
* then @ref drake::solvers::EqualityConstrainedQPSolver
* "EqualityConstraintQPSolver" provides efficient closed form solution.
*
* <b>Convex Optimization</b>
Expand Down

0 comments on commit 2036423

Please sign in to comment.