Kaydet (Commit) 79c6aff0 authored tarafından Noel Grandin's avatar Noel Grandin Kaydeden (comit) Noel Grandin

java: fix some javadoc errors

Eclipse was flagging this text as "invalid javadoc tags"

Change-Id: I09e090c6cc49366191f96d34bd51f6ba68cf18aa
Reviewed-on: https://gerrit.libreoffice.org/12524Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
Tested-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst 26085120
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Description: The description of generate-and-test behavior. * Description: The description of generate-and-test behavior.
* *
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 17, 2004 * Xiaofeng Xie May 17, 2004
* Xiaofeng Xie Jul 01, 2008 * Xiaofeng Xie Jul 01, 2008
* *
......
...@@ -3,17 +3,12 @@ ...@@ -3,17 +3,12 @@
#Supported parameters: #Supported parameters:
NAME VALUE_type Range DefaultV Description 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 FACTOR real (0, 1.2] 0.5 DEAgent: scale constant
CR real [0, 1] 0.9 DEAgent: crossover 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) //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 May 11, 2004
* Xiaofeng Xie Jul 01, 2008 * Xiaofeng Xie Jul 01, 2008
* *
...@@ -24,7 +19,7 @@ ...@@ -24,7 +19,7 @@
* [1] Storn R, Price K. Differential evolution - a simple and efficient * [1] Storn R, Price K. Differential evolution - a simple and efficient
* heuristic for global optimization over continuous spaces. Journal of * heuristic for global optimization over continuous spaces. Journal of
* Global Optimization, 1997, 11: 341-359 * 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 * [2] X F Xie, W J Zhang. SWAF: swarm algorithm framework for numerical
* optimization. Genetic and Evolutionary Computation Conference (GECCO), * optimization. Genetic and Evolutionary Computation Conference (GECCO),
* Seattle, WA, USA, 2004: 238-250 * Seattle, WA, USA, 2004: 238-250
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
CL real [0, 0.1] 0 PSAgent: chaos factor CL real [0, 0.1] 0 PSAgent: chaos factor
//Other choices for c1, c2, w, and CL: (2, 2, 0.4, 0.001) //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 May 11, 2004
* Xiaofeng Xie Jul 01, 2008 * Xiaofeng Xie Jul 01, 2008
* *
...@@ -28,24 +28,24 @@ ...@@ -28,24 +28,24 @@
* @version 1.0 * @version 1.0
* @Since MAOS1.0 * @Since MAOS1.0
* *
* @References: * References:
* [1] Kennedy J, Eberhart R C. Particle swarm optimization. IEEE Int. Conf. on * [1] Kennedy J, Eberhart R C. Particle swarm optimization. IEEE Int. Conf. on
* Neural Networks, Perth, Australia, 1995: 1942-1948 * 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. * [2] Shi Y H, Eberhart R C. A Modified Particle Swarm Optimizer. IEEE Inter. Conf.
* on Evolutionary Computation, Anchorage, Alaska, 1998: 69-73 * 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 * [3] Clerc M, Kennedy J. The particle swarm - explosion, stability, and
* convergence in a multidimensional complex space. IEEE Trans. on Evolutionary * convergence in a multidimensional complex space. IEEE Trans. on Evolutionary
* Computation. 2002, 6 (1): 58-73 * 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. * [4] Xie X F, Zhang W J, Yang Z L. A dissipative particle swarm optimization.
* Congress on Evolutionary Computation, Hawaii, USA, 2002: 1456-1461 * 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- * [5] Xie X F, Zhang W J, Bi D C. Optimizing semiconductor devices by self-
* organizing particle swarm. Congress on Evolutionary Computation, Oregon, USA, * organizing particle swarm. Congress on Evolutionary Computation, Oregon, USA,
* 2004: 2017-2022 * 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 * [6] X F Xie, W J Zhang. SWAF: swarm algorithm framework for numerical
* optimization. Genetic and Evolutionary Computation Conference (GECCO), * optimization. Genetic and Evolutionary Computation Conference (GECCO),
* Seattle, WA, USA, 2004: 238-250 * Seattle, WA, USA, 2004: 238-250
......
/** /**
* Description: provide the information for evaluating of a response (target) * 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 Mar 1, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Description: provide the information for evaluating a set of targets values * Description: provide the information for evaluating a set of targets values
* into encoded information (For formation the goodness landscape by comparing) * 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 Mar 1, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
/** /**
* Description: provide the encoded information for objectives * Description: provide the encoded information for objectives
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Feb 10, 2004 * Xiaofeng Xie Feb 10, 2004
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
/** /**
* Description: basic operations on Arrays * Description: basic operations on Arrays
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Oct. 9, 2002 * Xiaofeng Xie Oct. 9, 2002
* *
*/ */
......
/** /**
* Description: provide an bound, and the corresponding operations * Description: provide an bound, and the corresponding operations
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Oct. 9, 2002 * Xiaofeng Xie Oct. 9, 2002
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
/** /**
* Description: defines some static constant values. * Description: defines some static constant values.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Sep 22, 2000 xiaofengxie@tsinghua.org.cn * Xiaofeng Xie Sep 22, 2000 xiaofengxie@tsinghua.org.cn
* *
* @version 1.0 * @version 1.0
...@@ -13,27 +13,8 @@ package net.adaptivebox.global; ...@@ -13,27 +13,8 @@ package net.adaptivebox.global;
public class BasicTag { public class BasicTag {
public static final String DOT_TAG = "."; public static final String DOT_TAG = ".";
public static final String FILE_SEP_TAG = System.getProperty("file.separator"); public static final String FILE_SEP_TAG = System.getProperty("file.separator");
} }
......
/** /**
* Description: Global value for comparison. * Description: Global value for comparison.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002 * Xiaofeng Xie Jun 15, 2002
* Xiaofeng Xie Feb 18, 2004 * Xiaofeng Xie Feb 18, 2004
* *
......
/** /**
* Description: Global package for comparison. * Description: Global package for comparison.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002 xiaofengxie@tsinghua.org.cn * Xiaofeng Xie Jun 15, 2002 xiaofengxie@tsinghua.org.cn
* *
* *
......
/** /**
* Description: Global package for file operations. * Description: Global package for file operations.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Jun 15, 2002 * Xiaofeng Xie Jun 15, 2002
* *
* @version 1.0 * @version 1.0
......
/** /**
* Description: operations for the a text string. * Description: operations for the a text string.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001 * Xiaofeng Xie Feb 22, 2001
* Xiaofeng Xie May 12, 2004 * Xiaofeng Xie May 12, 2004
* *
......
/** /**
* 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 * Xiaofeng Xie Feb 18, 2004
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
/** /**
* Description: Output methods for Array * Description: Output methods for Array
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001 * Xiaofeng Xie Feb 22, 2001
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
/** /**
* Description: For generating random numbers. * Description: For generating random numbers.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Feb 22, 2001 * Xiaofeng Xie Feb 22, 2001
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
* Description: For comparison of goodness in landscape with loosed constraints * Description: For comparison of goodness in landscape with loosed constraints
* which varied adaptively according to the social information. * 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 * the problem with eqaulity constraints
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Jun 24, 2003 Created * Xiaofeng Xie Jun 24, 2003 Created
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
/** /**
* Description: For formation the basic goodness landscape. * Description: For formation the basic goodness landscape.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Jun 24, 2003 Created * Xiaofeng Xie Jun 24, 2003 Created
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
/** /**
* Description: For comparison of goodness. * Description: For comparison of goodness.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Feb 19, 2004 * Xiaofeng Xie Feb 19, 2004
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* Description: For comparison of goodness in landscape with penalty method. * Description: For comparison of goodness in landscape with penalty method.
* *
* @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 * the problem with equality constraints
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 29, 2004 * Xiaofeng Xie May 29, 2004
* *
* @version 1.0 * @version 1.0
......
/** /**
* Description: For comparison of goodness in landscape with stoch. ranking. * Description: For comparison of goodness in landscape with stoch. ranking.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 29, 2004 * Xiaofeng Xie May 29, 2004
* *
* [1] Runarsson T P, Yao X. Stochastic ranking for constrained evolutionary * [1] Runarsson T P, Yao X. Stochastic ranking for constrained evolutionary
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Description: set the library. * Description: set the library.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 14, 2004 * Xiaofeng Xie May 14, 2004
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/** /**
* Description: Contains a set of points. * Description: Contains a set of points.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Mar 7, 2003 * Xiaofeng Xie Mar 7, 2003
* Xiaofeng Xie May 3, 2003 * Xiaofeng Xie May 3, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
......
/** /**
* Description: provide the location and encoded goodness information * Description: provide the location and encoded goodness information
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003 * Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Description: Encodes the specified problem into encoded information for * Description: Encodes the specified problem into encoded information for
* forming the goodness landscape. * forming the goodness landscape.
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 31, 2000 * Xiaofeng Xie May 31, 2000
* Xiaofeng Xie Sep. 19, 2002 * Xiaofeng Xie Sep. 19, 2002
* Xiaofeng Xie Mar. 01, 2003 * Xiaofeng Xie Mar. 01, 2003
......
/** /**
* Description: For unconstrained function * Description: For unconstrained function
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Dec 28, 2001 * Xiaofeng Xie Dec 28, 2001
* Xiaofeng Xie Mar 02, 2003 * Xiaofeng Xie Mar 02, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
......
/** /**
* Description: provide the location information of a point * Description: provide the location information of a point
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Mar 1, 2003 * Xiaofeng Xie Mar 1, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
/** /**
* Description: provide the information for goodness evaluation of a target * 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 Mar 1, 2003
* Xiaofeng Xie May 3, 2004 Add grain value * Xiaofeng Xie May 3, 2004 Add grain value
* Xiaofeng Xie May 11, 2004 Add crowd distance * Xiaofeng Xie May 11, 2004 Add crowd distance
......
/** /**
* Description: provide the information for the search space (S) * Description: provide the information for the search space (S)
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie Mar 2, 2003 * Xiaofeng Xie Mar 2, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
* [1] Zhang W J, Xie X F, Bi D C. Handling boundary constraints for numerical * [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 * optimization by particle swarm flying in periodic search space. Congress
* on Evolutionary Computation, Oregon, USA, 2004 * on Evolutionary Computation, Oregon, USA, 2004
* @ especially for particle swarm agent * especially for particle swarm agent
*/ */
package net.adaptivebox.space; package net.adaptivebox.space;
......
/** /**
* Description: provide the information for location * Description: provide the information for location
* *
* @ Author Create/Modi Note * Author Create/Modi Note
* Xiaofeng Xie May 3, 2003 * Xiaofeng Xie May 3, 2003
* Xiaofeng Xie May 11, 2004 * Xiaofeng Xie May 11, 2004
* *
......
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