Fix javadoc issues
This commit is contained in:
parent
5634d8c4cc
commit
cc6a661f99
|
@ -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;
|
||||
|
|
|
@ -50,14 +50,14 @@ import org.apache.commons.numbers.core.Precision;
|
|||
* 0 0 0 1 0 0 1 0 3 <= constraint 2
|
||||
* 0 0 1 1 0 0 0 1 4 <= constraint 3
|
||||
* </pre>
|
||||
* W: Phase 1 objective function</br>
|
||||
* Z: Phase 2 objective function</br>
|
||||
* x1 & x2: Decision variables</br>
|
||||
* x-: Extra decision variable to allow for negative values</br>
|
||||
* s1 & 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 & x2: Decision variables<br>
|
||||
* x-: Extra decision variable to allow for negative values<br>
|
||||
* s1 & s2: Slack/Surplus variables<br>
|
||||
* a1: Artificial variable<br>
|
||||
* RHS: Right hand side<br>
|
||||
*
|
||||
* @since 2.0
|
||||
*/
|
||||
class SimplexTableau implements Serializable {
|
||||
|
|
Loading…
Reference in New Issue