From bc796af28524841eb54ed68836a87ff85e62e2ac Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 1 Sep 2014 19:57:02 +0200 Subject: nlpsolver: fix javadoc error: bad use of '>' Change-Id: Ibfaeef155982ce6eeefe8ef51eea9c2bddb12c46 Reviewed-on: https://gerrit.libreoffice.org/11244 Reviewed-by: Thomas Arnhold Tested-by: Thomas Arnhold --- .../EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java | 7 ++++--- 1 file 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: * + *
    * 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)
+   * 3  MINDOUBLE, v        : the lessthan 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
-   *
+   * 
*/ public BasicBound targetBound = new BasicBound(); -- cgit