Fix javadoc issues

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/cc6a661f
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/cc6a661f
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/cc6a661f

Branch: refs/heads/master
Commit: cc6a661f994d654e64336ccd40f12fa66522ce60
Parents: 5634d8c
Author: Ray DeCampo <r...@decampo.org>
Authored: Sat May 13 10:39:00 2017 -0400
Committer: Ray DeCampo <r...@decampo.org>
Committed: Sat May 13 10:39:00 2017 -0400

----------------------------------------------------------------------
 .../math4/optim/linear/LinearConstraint.java        |  2 +-
 .../commons/math4/optim/linear/SimplexTableau.java  | 16 ++++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/cc6a661f/src/main/java/org/apache/commons/math4/optim/linear/LinearConstraint.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/optim/linear/LinearConstraint.java 
b/src/main/java/org/apache/commons/math4/optim/linear/LinearConstraint.java
index 1d194ac..ee75ef7 100644
--- a/src/main/java/org/apache/commons/math4/optim/linear/LinearConstraint.java
+++ b/src/main/java/org/apache/commons/math4/optim/linear/LinearConstraint.java
@@ -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 (=, &lt;=, >=). */
+    /** Relationship between left and right hand sides {@code (=, <=, >=)}. */
     private final Relationship relationship;
     /** Value of the constraint (right hand side). */
     private final double value;

http://git-wip-us.apache.org/repos/asf/commons-math/blob/cc6a661f/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java 
b/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java
index c435094..c8a33a1 100644
--- a/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java
+++ b/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java
@@ -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 {

Reply via email to