summaryrefslogtreecommitdiff
path: root/nlpsolver
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-12 15:50:43 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-11-18 08:07:14 +0000
commit79c6aff069a9593571226bb32e907f837a203b7c (patch)
tree618160ad21068242a4943ac866a43c032bb94205 /nlpsolver
parent2608512056b706bab57e36765e15f5c00668577a (diff)
java: fix some javadoc errors
Eclipse was flagging this text as "invalid javadoc tags" Change-Id: I09e090c6cc49366191f96d34bd51f6ba68cf18aa Reviewed-on: https://gerrit.libreoffice.org/12524 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'nlpsolver')
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java9
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/PSGTBehavior.java14
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalStruct.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/IEncodeEngine.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicArray.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicTag.java21
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalFile.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalString.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/IUpdateCycleEngine.java4
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/OutputMethods.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/RandomGenerator.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/ACRComparator.java4
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/BCHComparator.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/IGoodnessCompareEngine.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/PenaltyComparator.java4
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/SRComparator.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/ILibEngine.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/Library.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/SearchPoint.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/ProblemEncoder.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/UnconstrainedProblemEncoder.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/BasicPoint.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignDim.java2
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignSpace.java4
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/ILocationEngine.java2
30 files changed, 41 insertions, 65 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
index b4b9b4ca6a5e..60f438cc637c 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
@@ -2,7 +2,7 @@
* Description: The description of generate-and-test behavior.
*
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 17, 2004
* Xiaofeng Xie Jul 01, 2008
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
index 3e7b32e855fc..c9879c099e61 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
@@ -3,17 +3,12 @@
#Supported parameters:
NAME VALUE_type Range DefaultV Description
-<<<<<<< HEAD
- FACTOR real (0, 1.2] 0.5 DEAgent: scale constant
- CR real [0, 1] 0.9 DEAgent: crossover constant
-=======
FACTOR real (0, 1.2] 0.5 DEAgent: scale constant
CR real [0, 1] 0.9 DEAgent: crossover constant
->>>>>>> java: add @Override annotation to overriding methods
//Other choices for FACTOR and CR: (0.5, 0.1)
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 11, 2004
* Xiaofeng Xie Jul 01, 2008
*
@@ -24,7 +19,7 @@
* [1] Storn R, Price K. Differential evolution - a simple and efficient
* heuristic for global optimization over continuous spaces. Journal of
* Global Optimization, 1997, 11: 341-359
- * @ The original differential evolution idea
+ * The original differential evolution idea
* [2] X F Xie, W J Zhang. SWAF: swarm algorithm framework for numerical
* optimization. Genetic and Evolutionary Computation Conference (GECCO),
* Seattle, WA, USA, 2004: 238-250
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/PSGTBehavior.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/PSGTBehavior.java
index 19f1971f6c0c..546e9dd486a9 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/PSGTBehavior.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/PSGTBehavior.java
@@ -9,7 +9,7 @@
CL real [0, 0.1] 0 PSAgent: chaos factor
//Other choices for c1, c2, w, and CL: (2, 2, 0.4, 0.001)
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 11, 2004
* Xiaofeng Xie Jul 01, 2008
*
@@ -28,24 +28,24 @@
* @version 1.0
* @Since MAOS1.0
*
- * @References:
+ * References:
* [1] Kennedy J, Eberhart R C. Particle swarm optimization. IEEE Int. Conf. on
* Neural Networks, Perth, Australia, 1995: 1942-1948
- * @ For original particle swarm idea
+ * For original particle swarm idea
* [2] Shi Y H, Eberhart R C. A Modified Particle Swarm Optimizer. IEEE Inter. Conf.
* on Evolutionary Computation, Anchorage, Alaska, 1998: 69-73
- * @ For the inertia weight: adjust the trade-off between exploitation & exploration
+ * For the inertia weight: adjust the trade-off between exploitation & exploration
* [3] Clerc M, Kennedy J. The particle swarm - explosion, stability, and
* convergence in a multidimensional complex space. IEEE Trans. on Evolutionary
* Computation. 2002, 6 (1): 58-73
- * @ Constriction factor: ensures the convergence
+ * Constriction factor: ensures the convergence
* [4] Xie X F, Zhang W J, Yang Z L. A dissipative particle swarm optimization.
* Congress on Evolutionary Computation, Hawaii, USA, 2002: 1456-1461
- * @ The CL parameter
+ * The CL parameter
* [5] Xie X F, Zhang W J, Bi D C. Optimizing semiconductor devices by self-
* organizing particle swarm. Congress on Evolutionary Computation, Oregon, USA,
* 2004: 2017-2022
- * @ Further experimental analysis on the convergence of PSO
+ * Further experimental analysis on the convergence of PSO
* [6] X F Xie, W J Zhang. SWAF: swarm algorithm framework for numerical
* optimization. Genetic and Evolutionary Computation Conference (GECCO),
* Seattle, WA, USA, 2004: 238-250
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
index 5ff9a355425a..b61046d34d92 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
@@ -1,7 +1,7 @@
/**
* Description: provide the information for evaluating of a response (target)
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalStruct.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalStruct.java
index 8fba6038e8b7..6eed75dc3167 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalStruct.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalStruct.java
@@ -2,7 +2,7 @@
* Description: provide the information for evaluating a set of targets values
* into encoded information (For formation the goodness landscape by comparing)
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/IEncodeEngine.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/IEncodeEngine.java
index ba3e20d69d5d..dd8884b1e1c1 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/IEncodeEngine.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/IEncodeEngine.java
@@ -1,7 +1,7 @@
/**
* Description: provide the encoded information for objectives
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 10, 2004
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicArray.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicArray.java
index 98feb5639a53..4718f6ce62da 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicArray.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicArray.java
@@ -1,7 +1,7 @@
/**
* Description: basic operations on Arrays
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Oct. 9, 2002
*
*/
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
index 39413006ab13..f7b8dfdb6f2d 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
@@ -1,7 +1,7 @@
/**
* Description: provide an bound, and the corresponding operations
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Oct. 9, 2002
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicTag.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicTag.java
index e1ba8786033e..0bb5cc663817 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicTag.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicTag.java
@@ -1,7 +1,7 @@
/**
* Description: defines some static constant values.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Sep 22, 2000 xiaofengxie@tsinghua.org.cn
*
* @version 1.0
@@ -13,27 +13,8 @@ package net.adaptivebox.global;
public class BasicTag {
-
-
-
-
-
-
-
-
-
-
-
-
public static final String DOT_TAG = ".";
-
-
-
-
-
-
-
public static final String FILE_SEP_TAG = System.getProperty("file.separator");
}
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java
index be7f00cde765..a48796a55109 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/CompareValue.java
@@ -1,7 +1,7 @@
/**
* Description: Global value for comparison.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002
* Xiaofeng Xie Feb 18, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java
index 8cbfaa158747..741f201e5a11 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalCompare.java
@@ -1,7 +1,7 @@
/**
* Description: Global package for comparison.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002 xiaofengxie@tsinghua.org.cn
*
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalFile.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalFile.java
index 913ee64f1574..707dd7e1d214 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalFile.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalFile.java
@@ -1,7 +1,7 @@
/**
* Description: Global package for file operations.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002
*
* @version 1.0
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalString.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalString.java
index cb33daae9f19..975b2eba8331 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalString.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/GlobalString.java
@@ -1,7 +1,7 @@
/**
* Description: operations for the a text string.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001
* Xiaofeng Xie May 12, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/IUpdateCycleEngine.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/IUpdateCycleEngine.java
index f7c06224a8f1..0b4db684f7f6 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/IUpdateCycleEngine.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/IUpdateCycleEngine.java
@@ -1,7 +1,7 @@
/**
- * Description: provide the inteface for updating according to the cycle number
+ * Description: provide the interface for updating according to the cycle number
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 18, 2004
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/OutputMethods.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/OutputMethods.java
index 7debc6f685af..19dfab7a2a7b 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/OutputMethods.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/OutputMethods.java
@@ -1,7 +1,7 @@
/**
* Description: Output methods for Array
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/RandomGenerator.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/RandomGenerator.java
index 86103ee97b3f..0eb1e2a7eeac 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/RandomGenerator.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/RandomGenerator.java
@@ -1,7 +1,7 @@
/**
* Description: For generating random numbers.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/ACRComparator.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/ACRComparator.java
index fc4ee535fbc2..ae8d4d130f8c 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/ACRComparator.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/ACRComparator.java
@@ -2,10 +2,10 @@
* Description: For comparison of goodness in landscape with loosed constraints
* which varied adaptively according to the social information.
*
- * @Applied domain: efficiently for ridge class feasible space (SF), such as
+ * Applied domain: efficiently for ridge class feasible space (SF), such as
* the problem with eqaulity constraints
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Jun 24, 2003 Created
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/BCHComparator.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/BCHComparator.java
index 0337b2415e7f..bc251b5e8031 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/BCHComparator.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/BCHComparator.java
@@ -1,7 +1,7 @@
/**
* Description: For formation the basic goodness landscape.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Jun 24, 2003 Created
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/IGoodnessCompareEngine.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/IGoodnessCompareEngine.java
index 6bd1444540d3..aaa1754741d2 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/IGoodnessCompareEngine.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/IGoodnessCompareEngine.java
@@ -1,7 +1,7 @@
/**
* Description: For comparison of goodness.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Feb 19, 2004
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/PenaltyComparator.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/PenaltyComparator.java
index f0f8da3a2ff6..54ff61ce7dec 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/PenaltyComparator.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/PenaltyComparator.java
@@ -2,9 +2,9 @@
* Description: For comparison of goodness in landscape with penalty method.
*
* @Applied domain: efficiently for ridge class feasible space (SF), such as
- * the problem with eqaulity constraints
+ * the problem with equality constraints
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 29, 2004
*
* @version 1.0
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/SRComparator.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/SRComparator.java
index 7a8e59d74f59..5b2e82305d2b 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/SRComparator.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/goodness/SRComparator.java
@@ -1,7 +1,7 @@
/**
* Description: For comparison of goodness in landscape with stoch. ranking.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 29, 2004
*
* [1] Runarsson T P, Yao X. Stochastic ranking for constrained evolutionary
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/ILibEngine.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/ILibEngine.java
index 8a4d348a8c53..af5a8b2a1323 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/ILibEngine.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/ILibEngine.java
@@ -2,7 +2,7 @@
/**
* Description: set the library.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 14, 2004
*
* This library is free software; you can redistribute it and/or
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/Library.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/Library.java
index c94812edf5ce..6b6574bcc081 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/Library.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/Library.java
@@ -2,7 +2,7 @@
/**
* Description: Contains a set of points.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 7, 2003
* Xiaofeng Xie May 3, 2003
* Xiaofeng Xie May 11, 2004
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/SearchPoint.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/SearchPoint.java
index 6fee1b7367e4..ea37e1e5cd0b 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/SearchPoint.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/knowledge/SearchPoint.java
@@ -1,7 +1,7 @@
/**
* Description: provide the location and encoded goodness information
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/ProblemEncoder.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/ProblemEncoder.java
index 98c6824b73d6..603648e8428d 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/ProblemEncoder.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/ProblemEncoder.java
@@ -2,7 +2,7 @@
* Description: Encodes the specified problem into encoded information for
* forming the goodness landscape.
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 31, 2000
* Xiaofeng Xie Sep. 19, 2002
* Xiaofeng Xie Mar. 01, 2003
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/UnconstrainedProblemEncoder.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/UnconstrainedProblemEncoder.java
index f5193336789e..60b3644ffa5c 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/UnconstrainedProblemEncoder.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/problem/UnconstrainedProblemEncoder.java
@@ -1,7 +1,7 @@
/**
* Description: For unconstrained function
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Dec 28, 2001
* Xiaofeng Xie Mar 02, 2003
* Xiaofeng Xie May 11, 2004
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/BasicPoint.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/BasicPoint.java
index aba52de303a1..1cf1b8592a44 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/BasicPoint.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/BasicPoint.java
@@ -1,7 +1,7 @@
/**
* Description: provide the location information of a point
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004
*
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignDim.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignDim.java
index 2ddbf1b891a8..1089b850e8cb 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignDim.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignDim.java
@@ -1,7 +1,7 @@
/**
* Description: provide the information for goodness evaluation of a target
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 3, 2004 Add grain value
* Xiaofeng Xie May 11, 2004 Add crowd distance
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignSpace.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignSpace.java
index bc17ebd2f03b..1c36dd3d5910 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignSpace.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/DesignSpace.java
@@ -1,7 +1,7 @@
/**
* Description: provide the information for the search space (S)
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie Mar 2, 2003
* Xiaofeng Xie May 11, 2004
*
@@ -21,7 +21,7 @@
* [1] Zhang W J, Xie X F, Bi D C. Handling boundary constraints for numerical
* optimization by particle swarm flying in periodic search space. Congress
* on Evolutionary Computation, Oregon, USA, 2004
- * @ especially for particle swarm agent
+ * especially for particle swarm agent
*/
package net.adaptivebox.space;
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/ILocationEngine.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/ILocationEngine.java
index 8b32069a4ba6..66ab92a67ecf 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/ILocationEngine.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/space/ILocationEngine.java
@@ -1,7 +1,7 @@
/**
* Description: provide the information for location
*
- * @ Author Create/Modi Note
+ * Author Create/Modi Note
* Xiaofeng Xie May 3, 2003
* Xiaofeng Xie May 11, 2004
*