Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
atraplet committed Sep 22, 2024
1 parent 9703b34 commit 7f9d5fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/ustermetrics/ecos4j/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ public static String version() {
* s in K
* </pre>
* where x are the primal variables, s are slack variables, c, G, h, A, and b are the model data, and K is the
* convex cone. The cone K is the Cartesian product of the positive orthant cone, the second order cone, and the
* exponential cone.
* convex cone. The cone K is the Cartesian product of the positive orthant cone, second-order, and exponential
* cones.
*
* @param l the dimension of the positive orthant.
* @param q the dimensions of the second-order cones.
Expand All @@ -71,7 +71,7 @@ public static String version() {
* @param apr the (optional) sparse A matrix data (CCS).
* @param ajc the (optional) sparse A matrix column index (CCS).
* @param air the (optional) sparse A matrix row index (CCS). Entries within each column need to appear in order
* of increasing row index.
* of increasing row index.
* @param b the (optional) right-hand-side of the equalities.
* @see <a href="https://github.com/embotech/ecos">ECOS</a>
*/
Expand Down Expand Up @@ -173,7 +173,7 @@ public void setup(long l, long @NonNull [] q, long nExC, double @NonNull [] gpr,
* @param apr the (optional) sparse A matrix data (CCS).
* @param ajc the (optional) sparse A matrix column index (CCS).
* @param air the (optional) sparse A matrix row index (CCS). Entries within each column need to appear in order
* of increasing row index.
* of increasing row index.
* @param b the (optional) right-hand-side of the equalities.
*/
public void unsafeSetup(long l, long @NonNull [] q, long nExC, double @NonNull [] gpr, long @NonNull [] gjc,
Expand Down

0 comments on commit 7f9d5fe

Please sign in to comment.