summaryrefslogtreecommitdiff
path: root/nlpsolver
diff options
context:
space:
mode:
authorrbuj <robert.buj@gmail.com>2014-09-01 19:57:02 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-09-02 02:17:16 -0500
commitbc796af28524841eb54ed68836a87ff85e62e2ac (patch)
tree6795c3e446f40847b734ca186a16659e4caa7016 /nlpsolver
parent4db06c5a69e134237ee3820739d0ed3018453a68 (diff)
nlpsolver: fix javadoc error: bad use of '>'
Change-Id: Ibfaeef155982ce6eeefe8ef51eea9c2bddb12c46 Reviewed-on: https://gerrit.libreoffice.org/11244 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'nlpsolver')
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
index 81612dc80f2e..5ff9a355425a 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
@@ -29,16 +29,17 @@ public class EvalElement {
/**
* The expected range of the response value, forms the following objective:
*
+ * <pre>
* NO minValue maxValue : THE ELEMENT OF BasicBound
* 1 MINDOUBLE, MINDOUBLE: the minimize objective
* 2 MAXDOUBLE, MAXDOUBLE: the maximize objective
- * 3 MINDOUBLE, v : the lessthan constraint (<v)
- * 4 v , MAXDOUBLE: the largethan constraint (>v)
+ * 3 MINDOUBLE, v : the lessthan constraint {@literal (<v)}
+ * 4 v , MAXDOUBLE: the largethan constraint {@literal (>v)}
* 5 v1 , v2 : the region constraint, i.e. belongs to [v1, v2]
*
* OPTIM type: the No.1 and No.2
* CONS type: the last three
- *
+ * </pre>
*/
public BasicBound targetBound = new BasicBound();