diff --git a/resources/html/Default.html b/resources/html/Default.html index c25cad58..18a4c7fd 100644 --- a/resources/html/Default.html +++ b/resources/html/Default.html @@ -3,7 +3,6 @@ Default page

HTML description file is missing


diff --git a/resources/html/F13Problem.html b/resources/html/F13Problem.html index 37f85f66..03ab9e18 100644 --- a/resources/html/F13Problem.html +++ b/resources/html/F13Problem.html @@ -5,7 +5,7 @@

Schwefel's (sine root) function

- +

Schwefel's (sine root) function is highly multimodal and has no global basin of attraction. The optimum at a fitness of f(x*)=0 lies at x*=420.9687. Schwefel's sine root is a tough challenge for any global optimizer due to the multiple distinct optima. Especially, there is a deceptive nearly optimal solution close to x=(-420.9687)n. @@ -14,7 +14,7 @@ Schwefel's (sine root) function is highly multimodal and has no global basin of

- +
Schwefels's sine root function in 2D within the co-domain -500 <= x <= 500.

diff --git a/resources/html/F1Problem.html b/resources/html/F1Problem.html index 1cfb1fe6..500eeaf3 100644 --- a/resources/html/F1Problem.html +++ b/resources/html/F1Problem.html @@ -5,14 +5,14 @@

The F1 hyper-parabola function

- +

The hyper-parabola function is a n-dimensional, axis-symmetric, continuously differentiable, convex function:

Because of its simplicity every optimization-algorithm should be able to find its global minimum at x=[0, 0, ... , 0]

- +


More information about the F1 function can be found at: diff --git a/resources/html/F2Problem.html b/resources/html/F2Problem.html index 40dfaa06..df18b765 100644 --- a/resources/html/F2Problem.html +++ b/resources/html/F2Problem.html @@ -5,18 +5,18 @@

Generalized Rosenbrock's function

- +

This function is unimodal and continuous, but the global optimum is hard to find, because of independence through the term (x_(i+1) - x_i*x_i)^2 between contiguous parameters.

- +
Rosenbrock's function within the domain -5 <= x <= 5.

The global optimum is located in a parabolic formed valley (among the curve x^2 = x_1^2), which has a flat ground.
- +
The function close to its global optimum, which is: f(x) = f(1, 1, ... , 1) = 0.

diff --git a/resources/html/F3Problem.html b/resources/html/F3Problem.html index 7b187e07..20655a6b 100644 --- a/resources/html/F3Problem.html +++ b/resources/html/F3Problem.html @@ -5,18 +5,18 @@

The Step Function

- +

The idea of this function is the implementation of a flat plateau (slope 0)in an underlying continuous function. It's harder for optimization algortihms to find optima because minor changes of the object variables don't affect the fitness. Therefore no conclusions about the search direction can be made.

- +

The step function is symmetric considering the underlying function (here: f(x,y) = f(y,x)), but between the bulk constant plateau-areas not continuously differentiable.

Its minimum-area is located in the intervals: f(x)=f([-5.12,-5), ... , [-5.12,-5))=0.

- +


More information about the step function can be found at:

diff --git a/resources/html/F5Problem.html b/resources/html/F5Problem.html index 9697f9f7..33760602 100644 --- a/resources/html/F5Problem.html +++ b/resources/html/F5Problem.html @@ -5,18 +5,18 @@

Schwefels double sum

- +

Schwefel's double sum is a quadratic minimization problem. Its difficulty increases by the dimension n in O(n^2). It is used for analysis of correlating mutations.

It possesses specific symmetrical properties:
- +

Its minimum is located at: f(x)=f([0, 0, ... , 0])=0

- +


More information about Schwefel's double sum can be found at: diff --git a/resources/html/F6Problem.html b/resources/html/F6Problem.html index a5b7246a..c32f3318 100644 --- a/resources/html/F6Problem.html +++ b/resources/html/F6Problem.html @@ -5,7 +5,7 @@

Generalized Rastrigin's function

- +

Rastrigin's function is symmetric. It is based on the simple parabola function (called f1 in the EvA context), but it is multimodal because a modulation term on the basis of the cosine function is added. This evokes hills and valleys which are misleading local optima. @@ -13,14 +13,14 @@ Rastrigin's function is symmetric. It is based on the simple parabola functio Values used for the following illustrations: A=10, ω=2*π, n=2.
- +
Rastrigin's function within the co-domain -20>=x>=20

- +
Rastrigin's function within the co-domain -5>=x>=5 @@ -29,7 +29,7 @@ Rastrigin's function within the co-domain -5>=x>=5 Like Ackley's function a simple evolutionary algorithm would get stuck in a local optimum, while a broader searching algorithm would get out of the local optimum closer to the global optimum, which in this case is: f(x) = f(0, 0, ... , 0) = 0.

-
+
Rastrigin's function close to its optimum.


diff --git a/resources/html/F8Problem.html b/resources/html/F8Problem.html index 44bb50ea..38864ef7 100644 --- a/resources/html/F8Problem.html +++ b/resources/html/F8Problem.html @@ -5,7 +5,7 @@

Ackley's function

- +

Ackley's function is multimodal and symmetrical. It is based on an exponential function and modulated by a cosine function. @@ -17,12 +17,12 @@ The difficulty for an optimization algorithm is mid-graded because a simple opti

- +
Ackley's function within the co-domain -20 >= x >= 20, a=20, b=0.2, c=2*π, n=2.

- +
Ackley's function close to the optimum.


diff --git a/resources/html/StatisticsParameterImpl.html b/resources/html/StatisticsParameters.html similarity index 100% rename from resources/html/StatisticsParameterImpl.html rename to resources/html/StatisticsParameters.html diff --git a/src/eva2/gui/Exp.java b/src/eva2/gui/plot/Exp.java similarity index 98% rename from src/eva2/gui/Exp.java rename to src/eva2/gui/plot/Exp.java index cd21c802..82e75955 100644 --- a/src/eva2/gui/Exp.java +++ b/src/eva2/gui/plot/Exp.java @@ -1,4 +1,4 @@ -package eva2.gui; +package eva2.gui.plot; import eva2.tools.chart2d.DFunction;