aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/backend/function/SymbolicRegressionFunctions.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jcgp/backend/function/SymbolicRegressionFunctions.java')
-rw-r--r--src/jcgp/backend/function/SymbolicRegressionFunctions.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/jcgp/backend/function/SymbolicRegressionFunctions.java b/src/jcgp/backend/function/SymbolicRegressionFunctions.java
index 9c6a3b1..a4750fc 100644
--- a/src/jcgp/backend/function/SymbolicRegressionFunctions.java
+++ b/src/jcgp/backend/function/SymbolicRegressionFunctions.java
@@ -1,5 +1,7 @@
package jcgp.backend.function;
+import jcgp.backend.modules.problem.SymbolicRegressionProblem;
+
/**
* This class contains all symbolic regression functions
* (defined as double functions in the classic CGP implementation)
@@ -180,7 +182,7 @@ public class SymbolicRegressionFunctions extends FunctionSet {
/**
* Protected tangent function, in radians. Returns the tangent of input 0.
- * If input 0 is less than {@link DoubleArithmetic.}DIVISION_LIMIT,
+ * If input 0 is less than {@code DoubleArithmetic.DIVISION_LIMIT},
* this returns it unchanged.
*
* @see Math
@@ -317,7 +319,7 @@ public class SymbolicRegressionFunctions extends FunctionSet {
/**
* Protected natural log function. Returns the natural log of the absolute
- * value of input 0. If input 0 is less than {@link DoubleArithmetic.}DIVISION_LIMIT,
+ * value of input 0. If input 0 is less than {@code DoubleArithmetic.DIVISION_LIMIT},
* this returns it unchanged.
*
* @see Math
@@ -346,7 +348,7 @@ public class SymbolicRegressionFunctions extends FunctionSet {
/**
* Protected log base 10 function. Returns the log to base 10 the absolute
- * value of input 0. If input 0 is less than {@link DoubleArithmetic.}DIVISION_LIMIT,
+ * value of input 0. If input 0 is less than {@code DoubleArithmetic.DIVISION_LIMIT},
* this returns it unchanged.
*
* @see Math