• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-Dec-2007-

MSVCPP/H03-May-2022-190188

config/H16-Dec-2007-11,2048,980

maxfctes/H16-Dec-2007-1,017744

templates/H16-Dec-2007-7064

AUTHORSH A D30-Sep-200574 32

COPYINGH A D02-Dec-200317.6 KiB341281

INSTALLH A D02-May-20072.5 KiB8356

Makefile.amH A D04-Oct-200545 32

Makefile.cvsH A D26-Oct-200444 53

Makefile.inH A D16-Oct-200718 KiB586514

READMEH A D02-May-20071.2 KiB4027

acinclude.m4H A D16-Oct-200719.3 KiB604559

aclocal.m4H A D16-Oct-2007258.6 KiB7,3036,513

bootstrapH A D02-May-2007137 86

configureH A D16-Oct-2007707.8 KiB22,31517,698

configure.acH A D02-May-20071.6 KiB5242

maxfctes.kdevelopH A D04-Oct-20055.8 KiB204203

README

1+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
2
3Function maximization with Evolution Strategy (maxfctes):
4An ES example with Open BEAGLE
5
6Copyright (C) 2001-2003
7by  Christian Gagne <cgagne@gmail.com>
8and Marc Parizeau <parizeau@gel.ulaval.ca>
9
10+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
11
12
13Getting started
14===============
15
16  Example is compiled in binary 'maxfctes'. Usage options is described by
17  executing it with command-line argument '-OBusage'. The detailed help can
18  also be obtained with argument '-OBhelp'.
19
20Objective
21=========
22
23  Find the maximum of the following 5D function (LaTeX syntax):
24  $f(x) = \frac{161.8}{(u_N^2 \sum_{k=0}^{N-1}(x_k^2 + u_k^2))}$
25  with $x = <x_0, x_1, ..., x_{N-1}>$, $u_{k+1} = x_k + u_k$, $x_k$
26  in $[-200,200]$ for all $k$, $N = 5$ and $u_0 = 10$.
27
28Representation
29==============
30
31  Vector of five ES pairs, each pair being an association of a value
32  and a mutation strategy parameter. The values represents the function's
33  five arguments \f$x_i\f$. They are limited in the interval
34  \f$[-200,200]\f$ at the evaluation time.
35
36Fitness
37=======
38
39  Value of $f(x_1,x_2,x_3,x_4,x_5)$.
40