aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/function/TravellingSalesmanFunctions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/backend/function/TravellingSalesmanFunctions.java')
-rw-r--r--src/jcgp/backend/function/TravellingSalesmanFunctions.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/jcgp/backend/function/TravellingSalesmanFunctions.java b/src/jcgp/backend/function/TravellingSalesmanFunctions.java
index 06b44bb..8a326b5 100644
--- a/src/jcgp/backend/function/TravellingSalesmanFunctions.java
+++ b/src/jcgp/backend/function/TravellingSalesmanFunctions.java
@@ -3,9 +3,8 @@ package jcgp.backend.function;
/**
* This class contains all travelling salesman functions in static nested classes.
* <br>
- * This is the function set used by TravellingSalesmanProblem.
+ * This is the function set to be used by TravellingSalesmanProblem.
*
- * @see TravellingSalesmanProblem
* @author Eduardo Pedroni
*
*/
@@ -113,7 +112,7 @@ public class TravellingSalesmanFunctions extends FunctionSet {
/**
* Scaled exponential function. Returns the exponential of input 0
- * scaled to the range 0 < x < 1.
+ * scaled to the range 0 &lt; x &gt; 1.
*
* @see Math
*/
@@ -228,7 +227,7 @@ public class TravellingSalesmanFunctions extends FunctionSet {
/**
* Scaled hypotenuse function. Returns the square root of input 0 squared
- * plus input 1 squared, scaled to the range 0 < x < 1.
+ * plus input 1 squared, scaled to the range 0 &lt; x &gt; 1.
*
* @see Math
*/
@@ -257,7 +256,7 @@ public class TravellingSalesmanFunctions extends FunctionSet {
/**
* Scaled addition returns the sum of inputs 0 and 1 scaled
- * to the range 0 < x < 1.
+ * to the range 0 &lt; x &gt; 1.
*
*/
public static class ScaledAddition extends Function {
@@ -285,7 +284,7 @@ public class TravellingSalesmanFunctions extends FunctionSet {
/**
* Symmetric subtraction returns the absolute difference between inputs 0 and 1,
- * scaled to the range 0 < x < 1.
+ * scaled to the range 0 &lt;; x &gt; 1.
*
*/
public static class SymmetricSubtraction extends Function {