Fix javadoc issues

This commit is contained in:
Ray DeCampo 2017-05-13 10:39:00 -04:00
parent 5634d8c4cc
commit cc6a661f99
2 changed files with 9 additions and 9 deletions

View File

@ -50,7 +50,7 @@ public class LinearConstraint implements Serializable {
private static final long serialVersionUID = -764632794033034092L;
/** Coefficients of the constraint (left hand side). */
private final transient RealVector coefficients;
/** Relationship between left and right hand sides (=, <=, >=). */
/** Relationship between left and right hand sides {@code (=, <=, >=)}. */
private final Relationship relationship;
/** Value of the constraint (right hand side). */
private final double value;

View File

@ -50,14 +50,14 @@ import org.apache.commons.numbers.core.Precision;
* 0 0 0 1 0 0 1 0 3 &lt;= constraint 2
* 0 0 1 1 0 0 0 1 4 &lt;= constraint 3
* </pre>
* W: Phase 1 objective function</br>
* Z: Phase 2 objective function</br>
* x1 &amp; x2: Decision variables</br>
* x-: Extra decision variable to allow for negative values</br>
* s1 &amp; s2: Slack/Surplus variables</br>
* a1: Artificial variable</br>
* RHS: Right hand side</br>
* </p>
* W: Phase 1 objective function<br>
* Z: Phase 2 objective function<br>
* x1 &amp; x2: Decision variables<br>
* x-: Extra decision variable to allow for negative values<br>
* s1 &amp; s2: Slack/Surplus variables<br>
* a1: Artificial variable<br>
* RHS: Right hand side<br>
*
* @since 2.0
*/
class SimplexTableau implements Serializable {