Kaydet (Commit) bc796af2 authored tarafından rbuj's avatar rbuj Kaydeden (comit) Thomas Arnhold

nlpsolver: fix javadoc error: bad use of '>'

Change-Id: Ibfaeef155982ce6eeefe8ef51eea9c2bddb12c46
Reviewed-on: https://gerrit.libreoffice.org/11244Reviewed-by: 's avatarThomas Arnhold <thomas@arnhold.org>
Tested-by: 's avatarThomas Arnhold <thomas@arnhold.org>
üst 4db06c5a
...@@ -29,16 +29,17 @@ public class EvalElement { ...@@ -29,16 +29,17 @@ public class EvalElement {
/** /**
* The expected range of the response value, forms the following objective: * The expected range of the response value, forms the following objective:
* *
* <pre>
* NO minValue maxValue : THE ELEMENT OF BasicBound * NO minValue maxValue : THE ELEMENT OF BasicBound
* 1 MINDOUBLE, MINDOUBLE: the minimize objective * 1 MINDOUBLE, MINDOUBLE: the minimize objective
* 2 MAXDOUBLE, MAXDOUBLE: the maximize objective * 2 MAXDOUBLE, MAXDOUBLE: the maximize objective
* 3 MINDOUBLE, v : the lessthan constraint (<v) * 3 MINDOUBLE, v : the lessthan constraint {@literal (<v)}
* 4 v , MAXDOUBLE: the largethan constraint (>v) * 4 v , MAXDOUBLE: the largethan constraint {@literal (>v)}
* 5 v1 , v2 : the region constraint, i.e. belongs to [v1, v2] * 5 v1 , v2 : the region constraint, i.e. belongs to [v1, v2]
* *
* OPTIM type: the No.1 and No.2 * OPTIM type: the No.1 and No.2
* CONS type: the last three * CONS type: the last three
* * </pre>
*/ */
public BasicBound targetBound = new BasicBound(); public BasicBound targetBound = new BasicBound();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment